pub enum RLPDecodeError {
InvalidLength,
MalformedData,
MalformedBoolean,
UnexpectedList,
UnexpectedString,
InvalidCompression(String),
IncompatibleProtocol(String),
Custom(String),
}Variants§
InvalidLength
MalformedData
MalformedBoolean
UnexpectedList
UnexpectedString
InvalidCompression(String)
IncompatibleProtocol(String)
Custom(String)
Trait Implementations§
Source§impl Debug for RLPDecodeError
impl Debug for RLPDecodeError
Source§impl Display for RLPDecodeError
impl Display for RLPDecodeError
impl Eq for RLPDecodeError
Source§impl Error for RLPDecodeError
impl Error for RLPDecodeError
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
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for RLPDecodeError
impl PartialEq for RLPDecodeError
Source§fn eq(&self, other: &RLPDecodeError) -> bool
fn eq(&self, other: &RLPDecodeError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RLPDecodeError
Auto Trait Implementations§
impl Freeze for RLPDecodeError
impl RefUnwindSafe for RLPDecodeError
impl Send for RLPDecodeError
impl Sync for RLPDecodeError
impl Unpin for RLPDecodeError
impl UnsafeUnpin for RLPDecodeError
impl UnwindSafe for RLPDecodeError
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