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