pub trait HashImpl {
type Context: HashContext;
// Required method
fn hasher() -> Self::Context;
}
Required Associated Types§
type Context: HashContext
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.