[][src]Struct bitcoin_hashes::hmac::HmacMidState

pub struct HmacMidState<T: HashTrait> {
    pub inner: <T::Engine as EngineTrait>::MidState,
    pub outer: <T::Engine as EngineTrait>::MidState,
}

Pair of underlying hash midstates which represent the current state of an HmacEngine

Fields

inner: <T::Engine as EngineTrait>::MidState

Midstate of the inner hash engine

outer: <T::Engine as EngineTrait>::MidState

Midstate of the outer hash engine

Auto Trait Implementations

impl<T> RefUnwindSafe for HmacMidState<T> where
    <<T as Hash>::Engine as HashEngine>::MidState: RefUnwindSafe

impl<T> Send for HmacMidState<T> where
    <<T as Hash>::Engine as HashEngine>::MidState: Send

impl<T> Sync for HmacMidState<T> where
    <<T as Hash>::Engine as HashEngine>::MidState: Sync

impl<T> Unpin for HmacMidState<T> where
    <<T as Hash>::Engine as HashEngine>::MidState: Unpin

impl<T> UnwindSafe for HmacMidState<T> where
    <<T as Hash>::Engine as HashEngine>::MidState: 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, 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.