pub trait OrdMapValue<K>where K: Eq + Hash + Clone,{ // Required method fn key(&self) -> Option<K>; }
Trait a value in an OrdMap must implement.
OrdMap
K: key type
K
return some unique key of this value or None
None