Expand description
A hash map where keys are part of the values.
For more information, see IdHashMap
.
Structs§
- IdHash
Map - A hash map where the key is part of the value.
- Into
Iter - An iterator over the elements of a
IdHashMap
by ownership. Created byIdHashMap::into_iter
. - Iter
- An iterator over the elements of a
IdHashMap
by shared reference. Created byIdHashMap::iter
. - IterMut
- An iterator over the elements of a
IdHashMap
by mutable reference. Created byIdHashMap::iter_mut
. - Occupied
Entry - A view into an occupied entry in an
IdHashMap
. Part of theEntry
enum. - RefMut
- A mutable reference to an
IdHashMap
item. - Vacant
Entry - A vacant entry.
Enums§
Traits§
- IdHash
Item - An element stored in an
IdHashMap
.