Expand description
A type-based key value store where one value type is allowed for each key.
Structs§
- Occupied
Entry - A view onto an occupied entry in a TypeMap.
- TypeMap
- A map keyed by types.
- Vacant
Entry - A view onto an unoccupied entry in a TypeMap.
Enums§
- Entry
- A view onto an entry in a TypeMap.
Traits§
- Clone
Any - A marker trait meant for use as the
Aparameter inTypeMap. - Debug
Any - A marker trait meant for use as the
Aparameter inTypeMap. - Key
- This trait defines the relationship between keys and values in a TypeMap.
Type Aliases§
- Clone
Map - A version of
TypeMapcontaining onlyClonetypes. - Debug
Map - A version of
TypeMapcontaining onlyDebugtypes. - SendMap
- A version of
TypeMapcontaining onlySendtypes. - Share
Clone Map - A version of
TypeMapcontaining onlyClone + Send + Synctypes. - Share
Debug Map - A version of
TypeMapcontaining onlyDebug + Send + Synctypes. - Share
Map - A version of
TypeMapcontaining onlySend + Synctypes. - SyncMap
- A version of
TypeMapcontaining onlySynctypes.