Expand description
An ordered map based on a B-Tree that keeps insertion order of elements.
Structs§
- Index
Map - A b-tree map where the iteration order of the key-value pairs is independent of the ordering of the keys.
- Into
Iter - An owning iterator over the entries of a
IndexMap
. - Iter
- An iterator over the entries of an
IndexMap
. - IterMut
- A mutable iterator over the entries of an
IndexMap
. - Occupied
Entry - A view into an occupied entry in a
IndexMap
. It is part of theEntry
enum
. - Vacant
Entry - A view into a vacant entry in an
IndexMap
. It is part of theEntry
enum
. - Values
- An iterator over the values of an
IndexMap
. - Values
Mut - An iterator over the values of an
IndexMap
.
Enums§
- Entry
- A view into a single entry in a map, which may either be vacant or occupied.