pub trait RefKey { type Output; // Required method fn key(&self) -> &Self::Output; }
Trait for extracting key that is a reference to internal data from a data structure.
Type of the key.
Extract the key from the data structure.