pub trait Hashed {
    fn hash(&self) -> Hash;
}
Expand description

A trait for types that have a canonical hash

Required methods

Obtain the hash of the object

Implementors