[][src]Struct xxhash_c::XXH64

pub struct XXH64 { /* fields omitted */ }

Streaming version of XXH64 algorithm.

Implementations

impl XXH64[src]

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

Creates uninitialized instance.

It is unsafe to use any method before calling reset

pub fn new(seed: u64) -> Self[src]

Creates new instance.

Returns None if XXH64_reset fails

pub fn reset(&mut self, seed: u64)[src]

Resets hasher's state.

Trait Implementations

impl Default for XXH64[src]

impl Hasher for XXH64[src]

Auto Trait Implementations

impl Send for XXH64

impl Sync for XXH64

impl Unpin for XXH64

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.