Enum rlp::DecoderError
source · [−]pub enum DecoderError {
RlpIsTooBig,
RlpIsTooShort,
RlpExpectedToBeList,
RlpExpectedToBeData,
RlpIncorrectListLen,
RlpDataLenWithZeroPrefix,
RlpListLenWithZeroPrefix,
RlpInvalidIndirection,
RlpInconsistentLengthAndData,
RlpInvalidLength,
Custom(&'static str),
}
Expand description
Error concerning the RLP decoder.
Variants
RlpIsTooBig
Data has additional bytes at the end of the valid RLP fragment.
RlpIsTooShort
Data has too few bytes for valid RLP.
RlpExpectedToBeList
Expect an encoded list, RLP was something else.
RlpExpectedToBeData
Expect encoded data, RLP was something else.
RlpIncorrectListLen
Expected a different size list.
RlpDataLenWithZeroPrefix
Data length number has a prefixed zero byte, invalid for numbers.
RlpListLenWithZeroPrefix
List length number has a prefixed zero byte, invalid for numbers.
RlpInvalidIndirection
Non-canonical (longer than necessary) representation used for data or list.
RlpInconsistentLengthAndData
Declared length is inconsistent with data specified after.
RlpInvalidLength
Declared length is invalid and results in overflow
Custom(&'static str)
Custom rlp decoding error.
Trait Implementations
sourceimpl Clone for DecoderError
impl Clone for DecoderError
sourcefn clone(&self) -> DecoderError
fn clone(&self) -> DecoderError
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 more
sourceimpl Debug for DecoderError
impl Debug for DecoderError
sourceimpl Display for DecoderError
impl Display for DecoderError
sourceimpl Error for DecoderError
impl Error for DecoderError
sourcefn description(&self) -> &str
fn description(&self) -> &str
use the Display impl or to_string()
1.30.0 · 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
sourceimpl PartialEq<DecoderError> for DecoderError
impl PartialEq<DecoderError> for DecoderError
sourcefn eq(&self, other: &DecoderError) -> bool
fn eq(&self, other: &DecoderError) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &DecoderError) -> bool
fn ne(&self, other: &DecoderError) -> bool
This method tests for !=
.
impl Eq for DecoderError
impl StructuralEq for DecoderError
impl StructuralPartialEq for DecoderError
Auto Trait Implementations
impl RefUnwindSafe for DecoderError
impl Send for DecoderError
impl Sync for DecoderError
impl Unpin for DecoderError
impl UnwindSafe for DecoderError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more