Structs§
- Drain
- A draining iterator over the entries of a
Map. - Into
Iter - Into-iterator over the
Map. - Into
Keys - Consuming iterator over the keys of the
Map. - Into
Values - Consuming iterator over the values of the
Map. - Iter
- Iterator over the
Map. - IterMut
- Mutable Iterator over the
Map. - Keys
- A read-only iterator over the keys of the
Map. - Map
- A faster alternative of
std::collections::HashMap. - Occupied
Entry - A view into an occupied entry in a
Map. It is part of theEntryenum. - Set
- A faster alternative of
std::collections::HashSet. - SetDrain
- SetInto
Iter - Into-iterator over the
Set. - SetIter
- Iterator over the
Set. - Vacant
Entry - A view into a vacant entry in a
Map. It is part of theEntryenum. - Values
- An iterator over the values of the
Map. - Values
Mut - Mutable iterator over the values of the
Map.
Enums§
- Entry
- A view into a single entry in a map, which may either be vacant or occupied.