Enum vodozemac::ecies::MessageDecodeError
source · pub enum MessageDecodeError {
MissingSeparator,
KeyError(KeyError),
Base64(DecodeError),
}
Expand description
The error type for the ECIES message decoding failures.
Variants§
MissingSeparator
The initial message could not have been decoded, it’s missing the |
separator.
KeyError(KeyError)
The initial message could not have been decoded, the embedded Curve25519 key is malformed.
Base64(DecodeError)
The ciphertext is not valid base64.
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: DecodeError) -> Self
fn from(source: DecodeError) -> 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