Macros§
- Arc macro
- A macro to create a new
BTreeMap, providing two usage options: - Creates a new
BTreeSet<T>. - Creates a new
BinaryHeap<T>. - Creates a new
Boxinstance.
Structs§
- A thread-safe reference-counting pointer. ‘Arc’ stands for ‘Atomically Reference Counted’.
- An ordered map based on a B-Tree.
- An ordered set based on a B-Tree.
- A priority queue implemented with a binary heap.
- A pointer type that uniquely owns a heap allocation of type
T.