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_cell
crate, the thread-safe version was also calledOnceCell
; you had to choose betweenonce_cell::sync::OnceCell
andonce_cell::unsync::OnceCell
. But when it was added to the standard library,once_cell::sync::OnceCell
was renamed toOnceLock
to make them easier distinguishable. So