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
, { ... } }
Expand description

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

impl<N> Hash for String<N> where
    N: ArrayLength<u8>, 
impl<T, N> Hash for Vec<T, N> where
    T: Hash,
    N: ArrayLength<T>, 
impl<T, N, U, C> Hash for Queue<T, N, U, C> where
    N: ArrayLength<T>,
    T: Hash,
    U: Uxx,
    C: XCore,