pub trait BuildHashIterHasher<T> {
type Hasher: HashIterHasher<T>;
// Required method
fn build_hash_iter_hasher(&self) -> Self::Hasher;
}
Expand description
Builds hash iterator hasher – a hasher capable of generating multiple hash values.