pub trait IntoHash: Sealed {
// Required method
fn into_hash(self) -> Hash;
}Expand description
Trait for types which can be converted into a Hash.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".