pub trait HashExt {
// Provided methods
fn hash_value(self, h: u64) -> HashWrapper<Self>
where Self: Sized { ... }
fn hash_empty(self) -> EmptyHashWrapper<Self>
where Self: Sized { ... }
}Provided Methods§
fn hash_value(self, h: u64) -> HashWrapper<Self>where
Self: Sized,
fn hash_empty(self) -> EmptyHashWrapper<Self>where
Self: Sized,
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".