[][src]Struct xxhrs::XXH3_64

pub struct XXH3_64<'a> { /* fields omitted */ }

Implementations

impl<'_> XXH3_64<'_>[src]

pub fn hash(bytes: &[u8]) -> u64[src]

pub unsafe fn hash_with_entropy_buffer(entropy: &[u8], bytes: &[u8]) -> u64[src]

pub fn hash_with_entropy(entropy: &EntropyPool, bytes: &[u8]) -> u64[src]

pub fn hash_with_seed(seed: u64, bytes: &[u8]) -> u64[src]

pub fn new() -> XXH3_64<'static>[src]

pub unsafe fn with_entropy_buffer<'a>(entropy: &'a [u8]) -> XXH3_64<'a>[src]

pub fn with_entropy(entropy: &EntropyPool) -> XXH3_64<'static>[src]

Trait Implementations

impl<'_> Default for XXH3_64<'_>[src]

impl<'_> Hasher for XXH3_64<'_>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for XXH3_64<'a>

impl<'a> !Send for XXH3_64<'a>

impl<'a> !Sync for XXH3_64<'a>

impl<'a> Unpin for XXH3_64<'a>

impl<'a> UnwindSafe for XXH3_64<'a>

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.