pub trait Hasher<T>: Clone + Debug {
    fn hash_two(&self, left: &T, right: &T) -> Result<T, HasherError>;
}

Required Methods

Hash two elements together.

Implementors