[][src]Struct fasthash::metro::crc::Hash128_2

pub struct Hash128_2;

MetroHash 128-bit hash functions using HW CRC instruction.

Example

use fasthash::{metro::crc::Hash128_2, FastHash};

assert_eq!(
    Hash128_2::hash(b"hello"),
    72185604606880289212099011688929773703
);
assert_eq!(
    Hash128_2::hash_with_seed(b"hello", 123),
    306081561649455538136824300998603678168
);
assert_eq!(
    Hash128_2::hash(b"helloworld"),
    332348429832512530891646387991260171468
);

Trait Implementations

impl FastHash for Hash128_2[src]

type Hash = u128

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

type Hasher = Hasher128_2

Type of the hasher that will be created.

Auto Trait Implementations

impl Send for Hash128_2

impl Sync for Hash128_2

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]