[][src]Struct fasthash::murmur2::Hash32Neutral

pub struct Hash32Neutral;

MurmurHash2 32-bit neutral hash functions for the (slower) endian-neutral implementation

Example

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

assert_eq!(Hash32Neutral::hash(b"hello"), 3848350155);
assert_eq!(Hash32Neutral::hash_with_seed(b"hello", 123), 2385981934);
assert_eq!(Hash32Neutral::hash(b"helloworld"), 2155944146);

Trait Implementations

impl FastHash for Hash32Neutral[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 Hash32Neutral[src]

type Hasher = Hasher32Neutral

Type of the hasher that will be created.

Auto Trait Implementations

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]