[][src]Trait hash32::BuildHasher

pub trait BuildHasher {
    type Hasher: Hasher;
    fn build_hasher(&self) -> Self::Hasher;
}
[]

See core::hash::BuildHasher for details

Associated Types

type Hasher: Hasher[]

Required methods

fn build_hasher(&self) -> Self::Hasher[]

Implementors

impl<H> BuildHasher for BuildHasherDefault<H> where
    H: Default + Hasher
[src][]