Modules§
- atomic
- Atomic types
Structs§
- Arc
std
- A thread-safe reference-counting pointer. ‘Arc’ stands for ‘Atomically Reference Counted’.
- Lazy
Lock - A value which is initialized on the first access.
- Mutex
- A shimmed
Mutex
with an API mutual tospin
andstd
. - Mutex
Guard - An RAII implementation of a “scoped lock” of a mutex. When this structure is dropped (falls out of scope), the lock will be unlocked.
- Weak
std
Weak
is a version ofArc
that holds a non-owning reference to the managed allocation.