Expand description
Synchronization primitives such as Arc
and Weak
.
Structs§
- A thread-safe reference-counting pointer. ‘Arc’ stands for ‘Atomically Reference Counted’.
Weak
is a version ofArc
that holds a non-owning reference to the managed allocation.