7
Using OnceCell with Regex (for reading only)
(lemmyrs.org)
Ask any question relevant to the Rust language and its ecosystem. No such questions shall ever be considered dumb!
Ask for contributions for your crate
Yeah, it doesn't help that in the
once_cellcrate, the thread-safe version was also calledOnceCell; you had to choose betweenonce_cell::sync::OnceCellandonce_cell::unsync::OnceCell. But when it was added to the standard library,once_cell::sync::OnceCellwas renamed toOnceLockto make them easier distinguishable. So