Struct bdk_chain::bitcoin::hashes::hmac::HmacMidState
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> Freeze for HmacMidState<T>
impl<T> RefUnwindSafe for HmacMidState<T>
impl<T> Send for HmacMidState<T>
impl<T> Sync for HmacMidState<T>
impl<T> Unpin for HmacMidState<T>
impl<T> UnwindSafe for HmacMidState<T>
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