Enum rlp::DecoderError [−][src]
pub enum DecoderError {
    RlpIsTooBig,
    RlpIsTooShort,
    RlpExpectedToBeList,
    RlpExpectedToBeData,
    RlpIncorrectListLen,
    RlpDataLenWithZeroPrefix,
    RlpListLenWithZeroPrefix,
    RlpInvalidIndirection,
    RlpInconsistentLengthAndData,
    RlpInvalidLength,
    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.
RlpInvalidLengthDeclared length is invalid and results in overflow
Custom(&'static str)Custom rlp decoding error.
Trait Implementations
impl Debug for DecoderError[src] 
impl Debug for DecoderErrorfn fmt(&self, f: &mut Formatter) -> Result[src] 
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl PartialEq for DecoderError[src] 
impl PartialEq for DecoderErrorfn eq(&self, other: &DecoderError) -> bool[src] 
fn eq(&self, other: &DecoderError) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &DecoderError) -> bool[src] 
fn ne(&self, other: &DecoderError) -> boolThis method tests for !=.
impl Eq for DecoderError[src] 
impl Eq for DecoderErrorimpl Clone for DecoderError[src] 
impl Clone for DecoderErrorfn clone(&self) -> DecoderError[src] 
fn clone(&self) -> DecoderErrorReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src] 
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl StdError for DecoderError[src] 
impl StdError for DecoderErrorfn description(&self) -> &str[src] 
fn description(&self) -> &strThis method is soft-deprecated. Read more
fn cause(&self) -> Option<&Error>1.0.0[src] 
fn cause(&self) -> Option<&Error>The lower-level cause of this error, if any. Read more
impl Display for DecoderError[src] 
impl Display for DecoderErrorAuto Trait Implementations
impl Send for DecoderError
impl Send for DecoderErrorimpl Sync for DecoderError
impl Sync for DecoderError