Trait std::hash::HashExperimental [-]  [+] [src]

pub trait Hash<S = SipState> {
    fn hash(&self, state: &mut S);
}

A hashable type. The S type parameter is an abstract hash state that is used by the Hash to compute the hash. It defaults to std::hash::sip::SipState.

Required Methods

fn hash(&self, state: &mut S)

Computes the hash of a value.

Implementors