Module bi_hash_map

Source
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 BiHashMap by ownership. Created by BiHashMap::into_iter.
Iter
An iterator over the elements of a BiHashMap by shared reference. Created by BiHashMap::iter.
IterMut
An iterator over the elements of a BiHashMap by mutable reference. Created by BiHashMap::iter_mut.
OccupiedEntry
A view into an occupied entry in a BiHashMap. Part of the Entry enum.
RefMut
A mutable reference to a BiHashMap item.
VacantEntry
A vacant entry.

Enums§

Entry
An implementation of the Entry API for BiHashMap.
OccupiedEntryMut
A mutable view into an occupied entry in a BiHashMap.
OccupiedEntryRef
A view into an occupied entry in a BiHashMap.

Traits§

BiHashItem
An item in a BiHashMap.