Expand description
Contains the fixed Map
implementation.
Structs§
Enums§
- Entry
- A view into a single entry in a map, which may either be vacant or occupied.
Traits§
- MapStorage
- The trait defining how storage works.
- Occupied
Entry - A view into an occupied entry in a
Map
. It is part of theEntry
enum. - Vacant
Entry - A view into a vacant entry in a
Map
. It is part of theEntry
enum.
Type Aliases§
- Into
Iter - The iterator produced by
Map::into_iter
. - Iter
- The iterator produced by
Map::iter
. - IterMut
- The iterator produced by
Map::iter
. - Keys
- The iterator produced by
Map::keys
. - Values
- The iterator produced by
Map::values
. - Values
Mut - The iterator produced by
Map::values_mut
.