Enum packed_encoder::decoder::DecodeError
source · [−]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
sourceimpl Clone for DecodeError
impl Clone for DecodeError
sourcefn clone(&self) -> DecodeError
fn clone(&self) -> DecodeError
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto 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 Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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