Expand description
Structs§
- HashMap
- A hash map implemented very simply using robin hood hashing.
- HashSet
- A
HashSet
is implemented as aHashMap
where the value is()
. - Iter
- An iterator over entries of a
HashMap
- Iter
Owned - An iterator over entries of a
HashMap
- Occupied
Entry - A view into an occupied entry in a
HashMap
. This is part of thecrate::Entry
enum. - Vacant
Entry - A view into a vacant entry in a
HashMap
. It is part of thecrate::Entry
enum.
Enums§
- Entry
- A view into a single entry in a map, which may be vacant or occupied.
Traits§
- Clonable
Allocator - Trait for allocators that are cloneable.