Expand description
Type definitions for an ordered map.
Structs§
- Index
Map - A hash table where the iteration order of the key-value pairs is independent of the hash values of the keys.
- Into
Iter - An iterator over the owned items of an
IndexMap
. - Iter
- An iterator over the items of a
IndexMap
. - IterMut
- An iterator over the mutable items of a
IndexMap
. - Keys
- An iterator over the keys of a
IndexMap
. - Occupied
Entry - A view into an occupied entry in a
IndexMap
. - Vacant
Entry - A view into a vacant entry in a
IndexMap
. - Values
- An iterator over the values of a
IndexMap
. - Values
Mut - An mutable iterator over the values of a
IndexMap
.