Enum matrix_pickle::DecodeError
source · pub enum DecodeError {
IO(Error),
OutsideUsizeRange(u64),
ArrayTooBig(usize),
UnknownEnumVariant(u8),
}
Expand description
Error type describing failure modes for libolm pickle decoding.
Variants§
IO(Error)
There was an error while reading from the source of the libolm, usually not enough data was provided.
OutsideUsizeRange(u64)
The encoded usize doesn’t fit into the usize of the architecture that is decoding.
ArrayTooBig(usize)
An array in the pickle has too many elements.
UnknownEnumVariant(u8)
TODO
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()
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