pub trait Keyed<K>where K: ?Sized,{ // Required method fn key(&self) -> &K; }
Key accessor for elements which have their own keys, used for KeyedVecSet.
KeyedVecSet
key accessor for the element.