pub trait CanonicalHash {
    type Output: AsRef<[u8]>;

    // Required method
    fn hash(&self) -> Self::Output;
}

Required Associated Types§

Required Methods§

source

fn hash(&self) -> Self::Output

Implementors§