pub trait HashKernels {
type HI: Iterator<Item = usize>;
// Required method
fn hash_iter<T: Hash>(&self, item: &T) -> Self::HI;
}
Expand description
A trait for creating hash iterator of item.
Required Associated Types§
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.