Enum fluence_keypair::error::VerificationError
source · [−]pub enum VerificationError {
Ed25519(Error, String, String),
Rsa(Unspecified, String, String),
Secp256k1(Error, String, String),
}Expand description
An error during verification of a message.
Variants
Ed25519(Error, String, String)
Rsa(Unspecified, String, String)
Secp256k1(Error, String, String)
Trait Implementations
sourceimpl Debug for VerificationError
impl Debug for VerificationError
sourceimpl Display for VerificationError
impl Display for VerificationError
sourceimpl Error for VerificationError
impl Error for VerificationError
sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations
impl !RefUnwindSafe for VerificationError
impl Send for VerificationError
impl Sync for VerificationError
impl Unpin for VerificationError
impl !UnwindSafe for VerificationError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more