[][src]Struct xxhrs::RandomStateXXH3_128

pub struct RandomStateXXH3_128 {
    pub pool: EntropyPool,
}

xxh3 128 bit version. Generates a randomized seed using getrandom(). Because the associated hasher generates u32, this does not implement BuildHash, however this features the same interface.

Fields

pool: EntropyPool

Implementations

impl RandomStateXXH3_128[src]

pub fn new() -> Self[src]

pub fn build_hasher(&self) -> XXH3_128<'static>[src]

Trait Implementations

impl Clone for RandomStateXXH3_128[src]

impl Debug for RandomStateXXH3_128[src]

impl Default for RandomStateXXH3_128[src]

impl Eq for RandomStateXXH3_128[src]

impl PartialEq<RandomStateXXH3_128> for RandomStateXXH3_128[src]

impl StructuralEq for RandomStateXXH3_128[src]

impl StructuralPartialEq for RandomStateXXH3_128[src]

Auto Trait Implementations

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> 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.