Expand description
Synchronization primitive for initializing a value once, allowing others to await a reference to the value.
Structsยง
- Once
Lock  - The 
OnceLockis a synchronization primitive that allows for initializing a value once, and allowing others to.awaita reference to the value. This is useful for lazy initialization of a static value.