#[non_exhaustive]pub enum VerifierError {
VerifyFailed {
algorithm: Algorithm,
kind: VerifierFailureKind,
source: AlgorithmError,
},
}Expand description
Error returned when a verification operation fails.
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.
VerifyFailed
Verification failed for the given algorithm.
Fields
§
kind: VerifierFailureKindThe category of failure.
§
source: AlgorithmErrorThe underlying dispatch error.
Implementations§
Source§impl VerifierError
impl VerifierError
Sourcepub fn is_signature_invalid(&self) -> bool
pub fn is_signature_invalid(&self) -> bool
True when the failure means the signature itself is invalid (as opposed to an unsupported algorithm or malformed input).
Trait Implementations§
Source§impl Debug for VerifierError
impl Debug for VerifierError
Source§impl Display for VerifierError
impl Display for VerifierError
Source§impl Error for VerifierError
impl Error for VerifierError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for VerifierError
impl RefUnwindSafe for VerifierError
impl Send for VerifierError
impl Sync for VerifierError
impl Unpin for VerifierError
impl UnsafeUnpin for VerifierError
impl UnwindSafe for VerifierError
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