pub trait KeyMethod<K, V> {
type Container: KeyXorValue<K, V>;
// Required method
fn make(&mut self, value: V) -> Self::Container;
}Expand description
A keying method for use with DuplicatesBy
pub trait KeyMethod<K, V> {
type Container: KeyXorValue<K, V>;
// Required method
fn make(&mut self, value: V) -> Self::Container;
}A keying method for use with DuplicatesBy