Enum vodozemac::SignatureError
source · pub enum SignatureError {
Base64(DecodeError),
Signature(SignatureError),
}
Expand description
Error type describing signature verification failures.
Variants§
Base64(DecodeError)
The signature wasn’t valid base64.
Signature(SignatureError)
The signature failed to be verified.
Trait Implementations§
source§impl Debug for SignatureError
impl Debug for SignatureError
source§impl Display for SignatureError
impl Display for SignatureError
source§impl Error for SignatureError
impl Error for SignatureError
source§fn 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 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<DecodeError> for SignatureError
impl From<DecodeError> for SignatureError
source§fn from(source: DecodeError) -> Self
fn from(source: DecodeError) -> Self
Converts to this type from the input type.
source§impl From<Error> for SignatureError
impl From<Error> for SignatureError
source§fn from(source: SignatureError) -> Self
fn from(source: SignatureError) -> Self
Converts to this type from the input type.
source§impl From<SignatureError> for DecodeError
impl From<SignatureError> for DecodeError
source§fn from(source: SignatureError) -> Self
fn from(source: SignatureError) -> Self
Converts to this type from the input type.
source§impl From<SignatureError> for DecryptionError
impl From<SignatureError> for DecryptionError
source§fn from(source: SignatureError) -> Self
fn from(source: SignatureError) -> Self
Converts to this type from the input type.
source§impl From<SignatureError> for KeyError
impl From<SignatureError> for KeyError
source§fn from(source: SignatureError) -> Self
fn from(source: SignatureError) -> Self
Converts to this type from the input type.
source§impl From<SignatureError> for SessionKeyDecodeError
impl From<SignatureError> for SessionKeyDecodeError
source§fn from(source: SignatureError) -> Self
fn from(source: SignatureError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SignatureError
impl !RefUnwindSafe for SignatureError
impl Send for SignatureError
impl Sync for SignatureError
impl Unpin for SignatureError
impl !UnwindSafe for SignatureError
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