[][src]Struct sha2::Sha512Trunc224

pub struct Sha512Trunc224 { /* fields omitted */ }

The SHA-512 hash algorithm with the SHA-512/224 initial hash value. The result is truncated to 224 bits.

Trait Implementations

impl BlockInput for Sha512Trunc224[src]

type BlockSize = U128

impl Clone for Sha512Trunc224[src]

impl Debug for Sha512Trunc224[src]

impl Default for Sha512Trunc224[src]

impl FixedOutput for Sha512Trunc224[src]

type OutputSize = U28

impl Input for Sha512Trunc224[src]

impl Reset for Sha512Trunc224[src]

impl Write for Sha512Trunc224[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<D> Digest for D where
    D: Input + FixedOutput + Reset + Clone + Default
[src]

type OutputSize = <D as FixedOutput>::OutputSize

impl<D> DynDigest for D where
    D: 'static + Input + FixedOutput + Reset + Clone
[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> 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.