Expand description
This module provides an heterogenous map that can store types
that implement the trait SupportedType
.
Structs§
- An heterogenous map is a map from
Key
toValue
. It provide the methodsinsert
andget
for any typeT
that implementsSupportedType<Value>
.
Traits§
- A type that can be mapped to
Value
and optionally reconstructed back.