pub enum FingerprintCheck {
Match,
Mismatch {
expected: [u8; 8],
actual: [u8; 8],
},
}Expand description
Result of running a fingerprint check against some account bytes.
Variants§
Trait Implementations§
Source§impl Clone for FingerprintCheck
impl Clone for FingerprintCheck
Source§fn clone(&self) -> FingerprintCheck
fn clone(&self) -> FingerprintCheck
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FingerprintCheck
impl Debug for FingerprintCheck
Source§impl PartialEq for FingerprintCheck
impl PartialEq for FingerprintCheck
Source§fn eq(&self, other: &FingerprintCheck) -> bool
fn eq(&self, other: &FingerprintCheck) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for FingerprintCheck
impl Eq for FingerprintCheck
impl StructuralPartialEq for FingerprintCheck
Auto Trait Implementations§
impl Freeze for FingerprintCheck
impl RefUnwindSafe for FingerprintCheck
impl Send for FingerprintCheck
impl Sync for FingerprintCheck
impl Unpin for FingerprintCheck
impl UnsafeUnpin for FingerprintCheck
impl UnwindSafe for FingerprintCheck
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