pub struct HashOutput<H> {
pub sign: H,
pub verify: H,
}Expand description
Returned by Message::hash() containing the hash of the message to be
signed and the message to be verified.
Fields§
§sign: HThe hash of the message to be signed.
verify: HThe hash of the message to be verified.
Auto Trait Implementations§
impl<H> Freeze for HashOutput<H>where
H: Freeze,
impl<H> RefUnwindSafe for HashOutput<H>where
H: RefUnwindSafe,
impl<H> Send for HashOutput<H>where
H: Send,
impl<H> Sync for HashOutput<H>where
H: Sync,
impl<H> Unpin for HashOutput<H>where
H: Unpin,
impl<H> UnsafeUnpin for HashOutput<H>where
H: UnsafeUnpin,
impl<H> UnwindSafe for HashOutput<H>where
H: 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