pub enum NanoSignResult {
Verified(Hash),
Failed {
expected: [u8; 32],
actual: Hash,
},
Unsigned,
}Variants§
Trait Implementations§
Source§impl Debug for NanoSignResult
impl Debug for NanoSignResult
Source§impl PartialEq for NanoSignResult
impl PartialEq for NanoSignResult
impl StructuralPartialEq for NanoSignResult
Auto Trait Implementations§
impl Freeze for NanoSignResult
impl RefUnwindSafe for NanoSignResult
impl Send for NanoSignResult
impl Sync for NanoSignResult
impl Unpin for NanoSignResult
impl UnsafeUnpin for NanoSignResult
impl UnwindSafe for NanoSignResult
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