pub trait HashImpl {
type Context: HashContext;
// Required method
fn hasher() -> Self::Context;
}Required Associated Types§
type Context: HashContext
Required Methods§
Object Safety§
This trait is not object safe.
pub trait HashImpl {
type Context: HashContext;
// Required method
fn hasher() -> Self::Context;
}