Struct fasthash::murmur2::Murmur2_x86_64
[−]
[src]
pub struct Murmur2_x86_64 {}
MurmurHash2 64-bit hash functions for 32-bit processors
Trait Implementations
impl FastHash for Murmur2_x86_64
[src]
type Value = u64
The output hash generated value.
type Seed = u64
The seed to generate hash value.
fn hash_with_seed<T: AsRef<[u8]>>(bytes: &T, seed: u64) -> u64
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 Murmur2_x86_64
[src]
type Hasher = Murmur2Hasher_x86_64
Type of the hasher that will be created.
fn build_hasher(&self) -> Self::Hasher
Creates a new hasher. Read more