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
IdHashMapby ownership. Created byIdHashMap::into_iter. - Iter
- An iterator over the elements of a
IdHashMapby shared reference. Created byIdHashMap::iter. - IterMut
- An iterator over the elements of a
IdHashMapby mutable reference. Created byIdHashMap::iter_mut. - Occupied
Entry - A view into an occupied entry in an
IdHashMap. Part of theEntryenum. - RefMut
- A mutable reference to an
IdHashMapitem. - Vacant
Entry - A vacant entry.
Enums§
Traits§
- IdHash
Item - An element stored in an
IdHashMap.