Structs§
- Arc
- A thread-safe reference-counting pointer. ‘Arc’ stands for ‘Atomically Reference Counted’.
- Box
- A pointer type that uniquely owns a heap allocation of type
T. - Vec
- A contiguous growable array type, written as
Vec<T>, short for ‘vector’.