Expand description
About shared pointers. Re-export the archery
crate.
Structs§
- ArcK
- Type constructors for
Arc
pointers. - ArcTK
- Type constructors for
triomphe::Arc
pointers. - RcK
- Type constructors for
Rc
pointers. - Shared
Pointer - Pointer to shared data with reference-counting.
Traits§
- Shared
Pointer Kind - Trait for type constructors of reference-counting pointers.
Type Aliases§
- Default
Shared Ptr - Default shared pointer used in data structures like
vector::Vector
in this crate. This alias points toArcK
iftriomphe
is disabled,ArcTK
otherwise.