this post was submitted on 25 Jun 2023
6 points (100.0% liked)
Rust Programming
8146 readers
90 users here now
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
You may be able to use something like lazy_static.
https://docs.rs/lazy_static/latest/lazy_static/
I heard about this, but I wasn't sure it was the right way. Or if Rust developers just straight up avoid situations like this.
lazy_static was the standard way as far as I'm concerned until this month. OnceCell or OnceLock should fill this role now.