Expand description
A hash map where values are uniquely indexed by two keys.
For more information, see BiHashMap.
Structs§
- BiHashMap 
- A 1:1 (bijective) map for two keys and a value.
- IntoIter 
- 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.
- OccupiedEntry 
- A view into an occupied entry in a BiHashMap. Part of theEntryenum.
- RefMut
- A mutable reference to a BiHashMapitem.
- VacantEntry 
- A vacant entry.
Enums§
- Entry
- An implementation of the Entry API for BiHashMap.
- OccupiedEntry Mut 
- A mutable view into an occupied entry in a BiHashMap.
- OccupiedEntry Ref 
- A view into an occupied entry in a BiHashMap.
Traits§
- BiHashItem 
- An item in a BiHashMap.