pub trait Hasher:
Eq
+ Clone
+ Send
+ Sync
+ Debug
+ 'static {
type Hash: AsRef<[u8]> + Eq + Ord + Copy + Clone + Send + Sync + Debug + Hash + Codec;
// Required method
fn hash(s: &[u8]) -> Self::Hash;
}
Expand description
A hasher, used for creating identifiers for blocks or units.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.