Module collections
Collection types.
Modules
- binary_heap A priority queue implemented with a binary heap.
- btree_map An ordered map based on a B-Tree.
- btree_set An ordered set based on a B-Tree.
- linked_list A doubly-linked list with owned nodes.
- vec_deque A double-ended queue (deque) implemented with a growable ring buffer.
Structs
- BTreeMap An ordered map based on a [B-Tree].
- BTreeSet An ordered set based on a B-Tree.
- BinaryHeap A priority queue implemented with a binary heap.
- LinkedList A doubly-linked list with owned nodes.
-
TryReserveError
The error type for
try_reservemethods. - VecDeque A double-ended queue implemented with a growable ring buffer.
Enums
-
TryReserveErrorKind
Details of the allocation that caused a
TryReserveError