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 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl 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
👎Deprecated since 1.42.0: 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
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 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