pub trait BuildHasherTotalExt: BuildHasher {
// Provided method
fn tot_hash_one<T>(&self, x: T) -> u64
where T: TotalHash,
Self: Sized,
<Self as BuildHasher>::Hasher: Hasher { ... }
}Provided Methods§
fn tot_hash_one<T>(&self, x: T) -> u64
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".