Enum matrix_sdk::encryption::vodozemac::DecodeError
[−]pub enum DecodeError {
MessageType(usize),
MissingVersion,
MessageTooShort(usize),
InvalidVersion(u8, u8),
InvalidKey(KeyError),
InvalidMacLength(usize, usize),
Signature(SignatureError),
ProtoBufError(DecodeError),
Base64(DecodeError),
}Available on crate feature
e2e-encryption only.Expand description
Error type describing the different ways message decoding can fail.
Variants
MessageType(usize)
The Olm message has an invalid type.
MissingVersion
The message is missing a valid version.
MessageTooShort(usize)
The message doesn’t have enough data to be correctly decoded.
InvalidVersion(u8, u8)
The message has a unsupported version.
InvalidKey(KeyError)
An embedded public key couldn’t be decoded.
InvalidMacLength(usize, usize)
The embedded message authentication code couldn’t be decoded.
Signature(SignatureError)
An embedded signature couldn’t be decoded.
ProtoBufError(DecodeError)
The message couldn’t be decoded as a valid protocol buffer message.
Base64(DecodeError)
The message wasn’t valid base64.
Trait Implementations
impl Debug for DecodeError
impl Debug for DecodeError
impl Display for DecodeError
impl Display for DecodeError
impl Error for DecodeError
impl Error for DecodeError
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 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
impl From<DecodeError> for DecodeError
impl From<DecodeError> for DecodeError
fn from(source: DecodeError) -> DecodeError
fn from(source: DecodeError) -> DecodeError
Converts to this type from the input type.
impl From<DecodeError> for DecodeError
impl From<DecodeError> for DecodeError
fn from(source: DecodeError) -> DecodeError
fn from(source: DecodeError) -> DecodeError
Converts to this type from the input type.
impl From<DecodeError> for MegolmError
impl From<DecodeError> for MegolmError
fn from(source: DecodeError) -> MegolmError
fn from(source: DecodeError) -> MegolmError
Converts to this type from the input type.
impl From<KeyError> for DecodeError
impl From<KeyError> for DecodeError
fn from(source: KeyError) -> DecodeError
fn from(source: KeyError) -> DecodeError
Converts to this type from the input type.
impl From<SignatureError> for DecodeError
impl From<SignatureError> for DecodeError
fn from(source: SignatureError) -> DecodeError
fn from(source: SignatureError) -> DecodeError
Converts to this type from the input type.
Auto Trait Implementations
impl !RefUnwindSafe for DecodeError
impl Send for DecodeError
impl Sync for DecodeError
impl Unpin for DecodeError
impl !UnwindSafe for DecodeError
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