Structs§
- Lazy
- A value which is initialized on the first access.
- Once
- A synchronization primitive which initializes a value lazily, once. Since this also includes a
value, it is a bit more like
Once
fromparking_lot
orspin
. - RawMutex
- An extremely simple spinlock, locking by compare-and-swapping a single flag and repeating.
- RawRw
Lock