Struct secp256k1::hashes::hmac::HmacMidState
source · pub struct HmacMidState<T>where
T: Hash,{
pub inner: <<T as Hash>::Engine as HashEngine>::MidState,
pub outer: <<T as Hash>::Engine as HashEngine>::MidState,
}
Expand description
Pair of underlying hash midstates which represent the current state of an HmacEngine
.
Fields§
§inner: <<T as Hash>::Engine as HashEngine>::MidState
Midstate of the inner hash engine
outer: <<T as Hash>::Engine as HashEngine>::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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more