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
sourceimpl Debug for DecodeError
impl Debug for DecodeError
sourceimpl Display for DecodeError
impl Display for DecodeError
sourceimpl Error for DecodeError
impl Error for DecodeError
sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
sourcefn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
backtrace
)Returns a stack backtrace, if available, of where this error occurred. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
use the Display impl or to_string()
sourceimpl From<DecodeError> for DecodeError
impl From<DecodeError> for DecodeError
sourcefn from(source: ProtoBufDecodeError) -> Self
fn from(source: ProtoBufDecodeError) -> Self
Converts to this type from the input type.
sourceimpl From<DecodeError> for DecodeError
impl From<DecodeError> for DecodeError
sourcefn from(source: Base64DecodeError) -> Self
fn from(source: Base64DecodeError) -> Self
Converts to this type from the input type.
sourceimpl From<KeyError> for DecodeError
impl From<KeyError> for DecodeError
sourceimpl From<SignatureError> for DecodeError
impl From<SignatureError> for DecodeError
sourcefn from(source: SignatureError) -> Self
fn from(source: SignatureError) -> Self
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 T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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