#[non_exhaustive]pub enum DsigStatus {
Valid,
Invalid(FailureReason),
}Expand description
Verification status.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Valid
Signature/reference is cryptographically valid.
Invalid(FailureReason)
Signature/reference is invalid with a concrete reason.
Trait Implementations§
Source§impl Clone for DsigStatus
impl Clone for DsigStatus
Source§fn clone(&self) -> DsigStatus
fn clone(&self) -> DsigStatus
Returns a duplicate of the value. Read more
1.0.0 · 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 DsigStatus
impl Debug for DsigStatus
Source§impl PartialEq for DsigStatus
impl PartialEq for DsigStatus
impl Copy for DsigStatus
impl Eq for DsigStatus
impl StructuralPartialEq for DsigStatus
Auto Trait Implementations§
impl Freeze for DsigStatus
impl RefUnwindSafe for DsigStatus
impl Send for DsigStatus
impl Sync for DsigStatus
impl Unpin for DsigStatus
impl UnsafeUnpin for DsigStatus
impl UnwindSafe for DsigStatus
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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