Enum rlp::DecoderError
[−]
[src]
pub enum DecoderError {
RlpIsTooBig,
RlpIsTooShort,
RlpExpectedToBeList,
RlpExpectedToBeData,
RlpIncorrectListLen,
RlpDataLenWithZeroPrefix,
RlpListLenWithZeroPrefix,
RlpInvalidIndirection,
RlpInconsistentLengthAndData,
Custom(&'static str),
}Error concerning the RLP decoder.
Variants
RlpIsTooBigData has additional bytes at the end of the valid RLP fragment.
RlpIsTooShortData has too few bytes for valid RLP.
RlpExpectedToBeListExpect an encoded list, RLP was something else.
RlpExpectedToBeDataExpect encoded data, RLP was something else.
RlpIncorrectListLenExpected a different size list.
RlpDataLenWithZeroPrefixData length number has a prefixed zero byte, invalid for numbers.
RlpListLenWithZeroPrefixList length number has a prefixed zero byte, invalid for numbers.
RlpInvalidIndirectionNon-canonical (longer than necessary) representation used for data or list.
RlpInconsistentLengthAndDataDeclared length is inconsistent with data specified after.
Custom(&'static str)Custom rlp decoding error.
Trait Implementations
impl Debug for DecoderError[src]
impl PartialEq for DecoderError[src]
fn eq(&self, __arg_0: &DecoderError) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &DecoderError) -> bool
This method tests for !=.
impl Eq for DecoderError[src]
impl StdError for DecoderError[src]
fn description(&self) -> &str
A short description of the error. Read more
fn cause(&self) -> Option<&Error>1.0.0
The lower-level cause of this error, if any. Read more