pub enum MessageDecodeError {
Base64(Base64DecodeError),
Key(KeyError),
}
Expand description
An error type describing failures which can happen during the decoding of an
encrypted Message
.
Variants§
Base64(Base64DecodeError)
One of the message parts wasn’t valid Base64.
Key(KeyError)
The ephemeral Curve25519 key isn’t valid.
Trait Implementations§
source§impl Debug for MessageDecodeError
impl Debug for MessageDecodeError
source§impl Display for MessageDecodeError
impl Display for MessageDecodeError
source§impl Error for MessageDecodeError
impl Error for MessageDecodeError
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 MessageDecodeError
impl From<DecodeError> for MessageDecodeError
source§fn from(source: Base64DecodeError) -> Self
fn from(source: Base64DecodeError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MessageDecodeError
impl !RefUnwindSafe for MessageDecodeError
impl Send for MessageDecodeError
impl Sync for MessageDecodeError
impl Unpin for MessageDecodeError
impl !UnwindSafe for MessageDecodeError
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