[][src]Struct tiny_multihash::Blake2sHasher

pub struct Blake2sHasher<S: Size> { /* fields omitted */ }

Multihash hasher.

Trait Implementations

impl<S: Debug + Size> Debug for Blake2sHasher<S>[src]

impl<S: Size> Default for Blake2sHasher<S>[src]

impl<S: Size> StatefulHasher for Blake2sHasher<S>[src]

type Size = S

The maximum Digest size for that hasher (it is stack allocated).

type Digest = Blake2sDigest<Self::Size>

The Digest type to distinguish the output of different Hasher implementations.

Auto Trait Implementations

impl<S> RefUnwindSafe for Blake2sHasher<S> where
    S: RefUnwindSafe

impl<S> Send for Blake2sHasher<S>

impl<S> Sync for Blake2sHasher<S>

impl<S> Unpin for Blake2sHasher<S> where
    S: Unpin

impl<S> UnwindSafe for Blake2sHasher<S> where
    S: UnwindSafe

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> Same<T> for T

type Output = T

Should always be Self

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.