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.
Structs
A draining iterator over the entries of a IndexMap
.
A hash table where the iteration order of the key-value pairs is independent of the hash values of the keys.
An owning iterator over the entries of a IndexMap
.
An iterator over the entries of a IndexMap
.
A mutable iterator over the entries of a IndexMap
.
An iterator over the keys of a IndexMap
.
A view into an occupied entry in a IndexMap
.
It is part of the Entry
enum.
A view into a vacant entry in a IndexMap
.
It is part of the Entry
enum.
An iterator over the values of a IndexMap
.
A mutable iterator over the values of a IndexMap
.
Enums
Entry for an existing key-value pair or a vacant location to insert one.
Traits
Opt-in mutable access to keys.