Expand description
VecMap is a vector-based map implementation which retains the order of inserted entries.
Structs§
- Drain
- A draining iterator for
VecMap. - Into
Iter - An owning iterator over the entries of a
VecMap. - Into
Keys - An owning iterator over the keys of a
VecMap. - Into
Values - 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. - Iter
Mut2 - 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. - Occupied
Entry - A view into an occupied entry in a
VecMap. It is part of theEntryenum. - Vacant
Entry - A view into a vacant entry in a
VecMap. It is part of theEntryenum. - Values
- An iterator over the values of a
VecMap. - Values
Mut - 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§
- Mutable
Keys - Opt-in mutable access to keys.