Trait hash32::Hash [] [src]

pub trait Hash {
    fn hash<H>(&self, state: &mut H)
    where
        H: Hasher
; fn hash_slice<H>(data: &[Self], state: &mut H)
    where
        H: Hasher,
        Self: Sized
, { ... } }

See core::hash::Hash for details

Required Methods

Feeds this value into the given Hasher.

Provided Methods

Feeds a slice of this type into the given Hasher.

Implementors