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