[][src]Struct seahash::SeaHasher

pub struct SeaHasher { /* fields omitted */ }

The streaming version of the algorithm.

Implementations

impl SeaHasher[src]

pub fn new() -> SeaHasher[src]

Create a new SeaHasher with default state.

pub fn with_seeds(k1: u64, k2: u64, k3: u64, k4: u64) -> SeaHasher[src]

Construct a new SeaHasher given some seed.

For maximum quality, these seeds should be chosen at random.

Trait Implementations

impl Clone for SeaHasher[src]

impl Copy for SeaHasher[src]

impl Default for SeaHasher[src]

impl Hasher for SeaHasher[src]

Auto Trait Implementations

impl Send for SeaHasher

impl Sync for SeaHasher

impl Unpin for SeaHasher

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.