Enum vodozemac::DecodeError
source · pub enum DecodeError {
MessageType(usize),
MissingVersion,
MessageTooShort(usize),
InvalidVersion(u8, u8),
InvalidKey(KeyError),
InvalidMacLength(usize, usize),
Signature(SignatureError),
ProtoBufError(ProtoBufDecodeError),
Base64(Base64DecodeError),
}
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(ProtoBufDecodeError)
The message couldn’t be decoded as a valid protocol buffer message.
Base64(Base64DecodeError)
The message wasn’t valid base64.
Trait Implementations§
source§impl Debug for DecodeError
impl Debug for DecodeError
source§impl Display for DecodeError
impl Display for DecodeError
source§impl Error for DecodeError
impl Error for DecodeError
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 DecodeError
impl From<DecodeError> for DecodeError
source§fn from(source: Base64DecodeError) -> Self
fn from(source: Base64DecodeError) -> Self
Converts to this type from the input type.
source§impl From<DecodeError> for DecodeError
impl From<DecodeError> for DecodeError
source§fn from(source: ProtoBufDecodeError) -> Self
fn from(source: ProtoBufDecodeError) -> Self
Converts to this type from the input type.
source§impl From<KeyError> for DecodeError
impl From<KeyError> for DecodeError
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.
Auto Trait Implementations§
impl Freeze for DecodeError
impl !RefUnwindSafe for DecodeError
impl Send for DecodeError
impl Sync for DecodeError
impl Unpin for DecodeError
impl !UnwindSafe for DecodeError
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