Struct core::hash::sip::SipHasherExperimental [-]  [+] [src]

pub struct SipHasher {
    // some fields omitted
}

SipHasher computes the SipHash algorithm from a stream of bytes.

Methods

impl SipHasher

fn new() -> SipHasher

Creates a Sip.

fn new_with_keys(key0: u64, key1: u64) -> SipHasher

Creates a Sip that is keyed off the provided keys.

Trait Implementations

impl Hasher<SipState> for SipHasher

fn hash<T: Hash<SipState> + ?Sized>(&self, value: &T) -> u64

impl Default for SipHasher

fn default() -> SipHasher

Derived Implementations

impl Clone for SipHasher

fn clone(&self) -> SipHasher

fn clone_from(&mut self, source: &Self)