Expand description
Multithread Support Helper
Structs§
- Dynamic
Mut - A mutable memory location with dynamically checked borrow rules
- Once
Value - A cell which can nominally be written to only once.
- Shared
Ref - A single-threaded reference-counting pointer. ‘Rc’ stands for ‘Reference Counted’.
- Shared
Weak Ref Weak
is a version ofRc
that holds a non-owning reference to the managed allocation.