Expand description
A library for fallible Arc.
Structs§
- Alloc
Error - The error type for allocation failure.
- Arc
- A thread-safe reference-counting pointer. ‘Arc’ stands for ‘Atomically Reference Counted’.
- Weak
Weak
is a version ofArc
that holds a non-owning reference to the managed allocation. The allocation is accessed by callingupgrade
on theWeak
pointer, which returns anOption<Arc<T>>
.