Expand description
This crate provides the AnyMap
type, a safe and convenient store for one
value of each type.
Modules§
Structs§
- Map
- A collection containing zero or one values for any given type and allowing convenient, type-safe access to those values.
- Occupied
Entry - A view into a single occupied location in an
Map
. - Vacant
Entry - A view into a single empty location in an
Map
.
Enums§
- Entry
- A view into a single location in an
Map
, which may be vacant or occupied.
Type Aliases§
- AnyMap
- The most common type of
Map
: just usingAny
. - Send
Sync AnyMap - Sync version