[][src]Struct fasthash::murmur2::Hash32A

pub struct Hash32A;

MurmurHash2A 32-bit hash functions

Example

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

assert_eq!(Hash32A::hash(b"hello"), 259931098);
assert_eq!(Hash32A::hash_with_seed(b"hello", 123), 509510832);
assert_eq!(Hash32A::hash(b"helloworld"), 403945221);

Trait Implementations

impl FastHash for Hash32A[src]

type Hash = u32

The output hash generated value.

type Seed = u32

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 Hash32A[src]

type Hasher = Hasher32A

Type of the hasher that will be created.

Auto Trait Implementations

impl Send for Hash32A

impl Sync for Hash32A

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]