pub trait Hashable<H: HashOne> {
// Required method
fn hash(&self, seed: u64) -> u64;
}Expand description
Hashable trait.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".