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§
Source§impl Clone for DecoderError
impl Clone for DecoderError
Source§fn clone(&self) -> DecoderError
fn clone(&self) -> DecoderError
Returns a copy 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 moreSource§impl Debug for DecoderError
impl Debug for DecoderError
Source§impl Display for DecoderError
impl Display for DecoderError
Source§impl Error for DecoderError
impl Error for DecoderError
Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
Source§impl PartialEq for DecoderError
impl PartialEq for DecoderError
impl Eq for DecoderError
impl StructuralPartialEq for DecoderError
Auto Trait Implementations§
impl Freeze for DecoderError
impl RefUnwindSafe for DecoderError
impl Send for DecoderError
impl Sync for DecoderError
impl Unpin for DecoderError
impl UnwindSafe for DecoderError
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