pub enum Error {
Overflow,
LeadingZero,
InputTooShort,
NonCanonicalSingleByte,
NonCanonicalSize,
UnexpectedLength,
UnexpectedString,
UnexpectedList,
ListLengthMismatch {
expected: usize,
got: usize,
},
Custom(&'static str),
}
Expand description
RLP error type.
Variants§
Overflow
Numeric Overflow.
LeadingZero
Leading zero disallowed.
InputTooShort
Overran input while decoding.
NonCanonicalSingleByte
Expected single byte, but got invalid value.
NonCanonicalSize
Expected size, but got invalid value.
UnexpectedLength
Expected a payload of a specific size, got an unexpected size.
UnexpectedString
Expected another type, got a string instead.
UnexpectedList
Expected another type, got a list instead.
ListLengthMismatch
Got an unexpected number of items in a list.
Custom(&'static str)
Custom error.
Trait Implementations§
source§impl Error for Error
Available on crate feature std
only.
impl Error for Error
Available on crate feature
std
only.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()
impl Copy for Error
impl Eq for Error
impl StructuralPartialEq for Error
Auto Trait Implementations§
impl Freeze for Error
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnwindSafe for Error
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)