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.
Required Associated Types§
type Hasher: HashIterHasher<T>
Required Methods§
fn build_hash_iter_hasher(&self) -> Self::Hasher
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".