Functions§
- arc_
unwrap 🔒 ⚠Can be used instead ofArc::try_unwrap(arc).unwrap()
when it is guaranteed to succeed. - Guarantees uniqueness only if
Weak
pointers are never created from thisArc
or clones. - try_
arc_ 🔒 ⚠unwrap Can be used instead ofArc::try_unwrap
only ifWeak
pointers are never created from thisArc
or clones.