pub trait KeyExtractor<'a, T> {
    type Key: Hash;

    fn extract(&self, from: &'a T) -> Self::Key;
}

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors