pub trait HashOne {
// Required method
fn hash_one<T: Hash>(k: u64, v: T) -> u64;
}Expand description
Hash with seed
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".