pub trait HashImpl {
    type Context: HashContext;

    // Required method
    fn hasher() -> Self::Context;
}

Required Associated Types§

Required Methods§

source

fn hasher() -> Self::Context

Object Safety§

This trait is not object safe.

Implementors§