Struct fasthash::murmur2::MurmurNeutral2
[−]
[src]
pub struct MurmurNeutral2 {}
MurmurHash2 32-bit neutral hash functions for the (slower) endian-neutral implementation
Trait Implementations
impl FastHash for MurmurNeutral2
[src]
type Value = u32
The output hash generated value.
type Seed = u32
The seed to generate hash value.
fn hash_with_seed<T: AsRef<[u8]>>(bytes: &T, seed: u32) -> u32
Hash functions for a byte array. For convenience, a seed is also hashed into the result. Read more
fn hash<T: AsRef<[u8]>>(bytes: &T) -> Self::Value
Hash functions for a byte array.
impl BuildHasher for MurmurNeutral2
[src]
type Hasher = MurmurNeutral2Hasher
Type of the hasher that will be created.
fn build_hasher(&self) -> Self::Hasher
Creates a new hasher. Read more