Modules§
- map
IndexMap
is a hash table where the iteration order of the key-value pairs is independent of the hash values of the keys.- set
- A hash set implemented using
IndexMap
Macros§
- indexmap
- Create an
IndexMap
from a list of key-value pairs - indexmap_
with_ default - Create an
IndexMap
from a list of key-value pairs and aBuildHasherDefault
-wrapped custom hasher. - indexset
- Create an
IndexSet
from a list of values - indexset_
with_ default - Create an
IndexSet
from a list of values and aBuildHasherDefault
-wrapped custom hasher.
Structs§
- Index
Map - A hash table where the iteration order of the key-value pairs is independent of the hash values of the keys.
- Index
Set - A hash set where the iteration order of the values is independent of their hash values.
- TryReserve
Error - The error type for
try_reserve
methods.
Enums§
- GetDisjoint
MutError - The error type returned by
get_disjoint_indices_mut
.
Traits§
- Equivalent
- Key equivalence trait.