Expand description
Contains the sparse secondary map implementation.
Structs§
- Drain
- A draining iterator for
SparseSecondaryMap
. - Into
Iter - An iterator that moves key-value pairs out of a
SparseSecondaryMap
. - Iter
- An iterator over the key-value pairs in a
SparseSecondaryMap
. - IterMut
- A mutable iterator over the key-value pairs in a
SparseSecondaryMap
. - Keys
- An iterator over the keys in a
SparseSecondaryMap
. - Occupied
Entry - A view into a occupied entry in a
SparseSecondaryMap
. It is part of theEntry
enum. - Sparse
Secondary Map - Sparse secondary map, associate data with previously stored elements in a slot map.
- Vacant
Entry - A view into a vacant entry in a
SparseSecondaryMap
. It is part of theEntry
enum. - Values
- An iterator over the values in a
SparseSecondaryMap
. - Values
Mut - A mutable iterator over the values in a
SparseSecondaryMap
.
Enums§
- Entry
- A view into a single entry in a
SparseSecondaryMap
, which may either be vacant or occupied.