[][src]Struct wlambda::util::FnvHasher

pub struct FnvHasher(_);

Original FNV Rust implementation taken from fnv crate on crates.io by Alex Crichton alex@alexcrichton.com under Apache-2.0 / MIT license Copyright 2018.

An implementation of the Fowler–Noll–Vo hash function.

See the crate documentation for more details.

Methods

impl FnvHasher[src]

pub fn with_key(key: u64) -> FnvHasher[src]

pub fn finish_i64(self) -> i64[src]

pub fn write_f64(&mut self, f: f64)[src]

pub fn write_i64(&mut self, i: i64)[src]

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

Trait Implementations

impl Clone for FnvHasher[src]

impl Copy for FnvHasher[src]

impl Default for FnvHasher[src]

impl Debug for FnvHasher[src]

Auto Trait Implementations

Blanket Implementations

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

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

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

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