Enum matrix_pickle::EncodeError
source · pub enum EncodeError {
IO(Error),
OutsideU32Range(usize),
ArrayTooBig(usize),
}
Expand description
Error type describing failure modes for libolm pickle decoding.
Variants§
IO(Error)
There was an error while writing to the buffer.
OutsideU32Range(usize)
The usize value that should be encoded doesn’t fit into the u32 range of values.
ArrayTooBig(usize)
An array in the pickle has too many elements.
Trait Implementations§
source§impl Debug for EncodeError
impl Debug for EncodeError
source§impl Display for EncodeError
impl Display for EncodeError
source§impl Error for EncodeError
impl Error for EncodeError
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 EncodeError
impl !RefUnwindSafe for EncodeError
impl Send for EncodeError
impl Sync for EncodeError
impl Unpin for EncodeError
impl !UnwindSafe for EncodeError
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