Expand description
A hash map where values are uniquely indexed by two keys.
For more information, see BiHashMap.
Structs§
- BiHash
Map - A 1:1 (bijective) map for two keys and a value.
- Into
Iter - An iterator over the elements of a
BiHashMapby ownership. Created byBiHashMap::into_iter. - Iter
- An iterator over the elements of a
BiHashMapby shared reference. Created byBiHashMap::iter. - IterMut
- An iterator over the elements of a
BiHashMapby mutable reference. Created byBiHashMap::iter_mut. - Occupied
Entry - A view into an occupied entry in a
BiHashMap. Part of theEntryenum. - RefMut
- A mutable reference to a
BiHashMapitem. - Vacant
Entry - A vacant entry.
Enums§
- Entry
- An implementation of the Entry API for
BiHashMap. - Occupied
Entry Mut - A mutable view into an occupied entry in a
BiHashMap. - Occupied
Entry Ref - A view into an occupied entry in a
BiHashMap.
Traits§
- BiHash
Item - An item in a
BiHashMap.