Expand description
Structs§
- HashMap
- A hash map implemented very simply using robin hood hashing.
- HashSet
- A
HashSetis implemented as aHashMapwhere 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::Entryenum. - Vacant
Entry - A view into a vacant entry in a
HashMap. It is part of thecrate::Entryenum.
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.