Module map

Source
Expand description

VecMap is a vector-based map implementation which retains the order of inserted entries.

Structs§

Drain
A draining iterator for VecMap.
IntoIter
An owning iterator over the entries of a VecMap.
IntoKeys
An owning iterator over the keys of a VecMap.
IntoValues
An owning iterator over the values of a VecMap.
Iter
An iterator over the entries of a VecMap.
IterMut
A mutable iterator over the entries of a VecMap.
IterMut2
A mutable iterator over the entries of a VecMap.
Keys
An iterator over the keys of a VecMap.
KeysMut
A mutable iterator over the keys of a VecMap.
OccupiedEntry
A view into an occupied entry in a VecMap. It is part of the Entry enum.
VacantEntry
A view into a vacant entry in a VecMap. It is part of the Entry enum.
Values
An iterator over the values of a VecMap.
ValuesMut
A mutable iterator over the values of a VecMap.
VecMap
A vector-based map implementation which retains the order of inserted entries.

Enums§

Entry
Entry for an existing key-value pair or a vacant location to insert one.

Traits§

MutableKeys
Opt-in mutable access to keys.