[][src]Struct fasthash::murmur2::Hash64_x64

pub struct Hash64_x64;

MurmurHash2 64-bit hash functions for 64-bit processors

Example

use fasthash::{murmur2::Hash64_x64, FastHash};

assert_eq!(Hash64_x64::hash(b"hello"), 2191231550387646743);
assert_eq!(
    Hash64_x64::hash_with_seed(b"hello", 123),
    2597646618390559622
);
assert_eq!(Hash64_x64::hash(b"helloworld"), 2139823713852166039);

Trait Implementations

impl FastHash for Hash64_x64[src]

type Hash = u64

The output hash generated value.

type Seed = u64

The seed to generate hash value.

fn hash<T: AsRef<[u8]>>(bytes: T) -> Self::Hash[src]

Hash functions for a byte array.

impl BuildHasher for Hash64_x64[src]

type Hasher = Hasher64_x64

Type of the hasher that will be created.

Auto Trait Implementations

impl Send for Hash64_x64

impl Sync for Hash64_x64

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]