Expand description
IndexMap
is a hash table where the iteration order of the key-value
pairs is independent of the hash values of the keys.
Modules§
Structs§
- Drain
- A draining iterator over the entries of a
IndexMap
. - 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 owning iterator over the entries of a
IndexMap
. - Iter
- An iterator over the entries of a
IndexMap
. - IterMut
- A mutable iterator over the entries of a
IndexMap
. - Keys
- An iterator over the keys of a
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 a
IndexMap
. It is part of theEntry
enum. - Values
- An iterator over the values of a
IndexMap
. - Values
Mut - A mutable iterator over the values of a
IndexMap
.
Enums§
- Entry
- Entry for an existing key-value pair or a vacant location to insert one.
Traits§
- Mutable
Keys - Opt-in mutable access to keys.