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§
- raw_
entry_ v1 - Opt-in access to the experimental raw entry API.
Structs§
- Drain
- A draining iterator over the entries of an
IndexMap
. - Index
Map - A hash table where the iteration order of the key-value pairs is independent of the hash values of the keys.
- Indexed
Entry - A view into an occupied entry in an
IndexMap
obtained by index. - Into
Iter - An owning iterator over the entries of an
IndexMap
. - Into
Keys - An owning iterator over the keys of an
IndexMap
. - Into
Values - An owning iterator over the values of an
IndexMap
. - Iter
- An iterator over the entries of an
IndexMap
. - IterMut
- A mutable iterator over the entries of an
IndexMap
. - Iter
Mut2 - A mutable iterator over the entries of an
IndexMap
. - Keys
- An iterator over the keys of an
IndexMap
. - Occupied
Entry - A view into an occupied entry in an
IndexMap
. It is part of theEntry
enum. - Slice
- A dynamically-sized slice of key-value pairs in an
IndexMap
. - Splice
- A splicing iterator for
IndexMap
. - 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 - A mutable iterator over the values of an
IndexMap
.
Enums§
Traits§
- Mutable
Entry Key - Opt-in mutable access to
Entry
keys. - Mutable
Keys - Opt-in mutable access to
IndexMap
keys. - RawEntry
ApiV1 - Opt-in access to the experimental raw entry API.