Module id_hash_map

Source
Expand description

A hash map where keys are part of the values.

For more information, see IdHashMap.

Structs§

IdHashMap
A hash map where the key is part of the value.
IntoIter
An iterator over the elements of a IdHashMap by ownership. Created by IdHashMap::into_iter.
Iter
An iterator over the elements of a IdHashMap by shared reference. Created by IdHashMap::iter.
IterMut
An iterator over the elements of a IdHashMap by mutable reference. Created by IdHashMap::iter_mut.
OccupiedEntry
A view into an occupied entry in an IdHashMap. Part of the Entry enum.
RefMut
A mutable reference to an IdHashMap item.
VacantEntry
A vacant entry.

Enums§

Entry
An implementation of the Entry API for IdHashMap.

Traits§

IdHashItem
An element stored in an IdHashMap.