Module collections
Source - binary_heap
std - A priority queue implemented with a binary heap.
- btree_map
std - An ordered map based on a B-Tree.
- btree_set
std - An ordered set based on a B-Tree.
- hash_map
std - A hash map implemented with quadratic probing and SIMD lookup.
- hash_set
std - A hash set implemented as a
HashMap where the value is (). - linked_list
std - A doubly-linked list with owned nodes.
- vec_deque
std - A double-ended queue (deque) implemented with a growable ring buffer.
- BTreeMap
std - An ordered map based on a B-Tree.
- BTreeSet
std - An ordered set based on a B-Tree.
- BinaryHeap
std - A priority queue implemented with a binary heap.
- HashMap
std - A hash map implemented with quadratic probing and SIMD lookup.
- HashSet
std - A hash set implemented as a
HashMap where the value is (). - LinkedList
std - A doubly-linked list with owned nodes.
- TryReserveError
std - The error type for
try_reserve methods. - VecDeque
std - A double-ended queue implemented with a growable ring buffer.
- Bound
std - An endpoint of a range of keys.
- TryReserveErrorKindExperimental
std - Details of the allocation that caused a
TryReserveError