pub trait HashIterHasher<T> {
// Required method
fn hash_iter<K: Hash + ?Sized>(
&self,
key: &K,
count: usize,
) -> impl Iterator<Item = T>;
}Expand description
Provides an iterator over multiple hash values for a given key.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.