Enum ethers_rs::rlp::DecoderError
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§
§impl Clone for DecoderError
impl Clone for DecoderError
§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 more§impl Debug for DecoderError
impl Debug for DecoderError
§impl Display for DecoderError
impl Display for DecoderError
§impl Error for DecoderError
impl Error for DecoderError
§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)>
The lower-level source of this error, if any. Read more
§impl PartialEq<DecoderError> for DecoderError
impl PartialEq<DecoderError> for DecoderError
§fn 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 ==
.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§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.