Module index_map

Source
Expand description

Type definitions for an ordered map.

Structs§

IndexMap
A hash table where the iteration order of the key-value pairs is independent of the hash values of the keys.
IntoIter
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.
OccupiedEntry
A view into an occupied entry in a IndexMap.
VacantEntry
A view into a vacant entry in a IndexMap.
Values
An iterator over the values of a IndexMap.
ValuesMut
An mutable iterator over the values of a IndexMap.

Enums§

Entry
A view into a single entry in a IndexMap, which may either be vacant or occupied.