Trait typedmap::hashmap::TypedMapKey
source · pub trait TypedMapKey<Marker = ()>: Eq + Hash {
type Value: 'static;
}Expand description
A trait that a key stored in the TypedMap must be implement.
Marker may be used to implement multiple key-value type mappings.