pub enum DecodeError {
InvalidData(usize),
IndexOutOfBounds,
}
Expand description
DecodeError
wraps the error that occurred during during
Variants§
InvalidData(usize)
InvalidData represents an error that happens when given sequency of bytes at given offset cannot be decoded into the required data-type.
Example Err(DecodeErr::InvalidData(1))
says that the given bytes cannot be converted into the data-type specified at index 1.
IndexOutOfBounds
IndexOutOfBounds occurs when offset > size of the byte array.
Trait Implementations§
Source§impl Clone for DecodeError
impl Clone for DecodeError
Source§fn clone(&self) -> DecodeError
fn clone(&self) -> DecodeError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto 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