pub trait HashIterHasher<V> {
// Required method
fn hash_iter<K: Hash>(
&self,
key: &K,
count: usize,
) -> impl Iterator<Item = V>;
}
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.