Struct xxhash_c::XXH3_128[][src]

pub struct XXH3_128 { /* fields omitted */ }

Streaming version of XXH3 128 bit algorithm.

Implementations

impl XXH3_128[src]

pub const unsafe fn uninit() -> Self[src]

Creates uninitialized instance.

It is unsafe to use any method before calling reset

pub fn new() -> Self[src]

Creates new instance.

pub fn reset<R: Xxh3Reset>(&mut self, reset: R)[src]

Resets hasher’s state according to specified reset policy.

pub fn finish(&self) -> u128[src]

pub fn write(&mut self, input: &[u8])[src]

Trait Implementations

impl Default for XXH3_128[src]

Auto Trait Implementations

impl !Send for XXH3_128

impl !Sync for XXH3_128

impl Unpin for XXH3_128

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.