alloy_rlp/
error.rs
1use core::fmt;
2
3pub type Result<T, E = Error> = core::result::Result<T, E>;
5
6#[derive(Clone, Copy, Debug, Eq, PartialEq)]
8pub enum Error {
9 Overflow,
11 LeadingZero,
13 InputTooShort,
15 NonCanonicalSingleByte,
17 NonCanonicalSize,
19 UnexpectedLength,
21 UnexpectedString,
23 UnexpectedList,
25 ListLengthMismatch {
27 expected: usize,
29 got: usize,
31 },
32 Custom(&'static str),
34}
35
36#[cfg(all(feature = "core-net", not(feature = "std")))]
37impl core::error::Error for Error {}
38#[cfg(feature = "std")]
39impl std::error::Error for Error {}
40
41impl fmt::Display for Error {
42 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
43 match self {
44 Self::Overflow => f.write_str("overflow"),
45 Self::LeadingZero => f.write_str("leading zero"),
46 Self::InputTooShort => f.write_str("input too short"),
47 Self::NonCanonicalSingleByte => f.write_str("non-canonical single byte"),
48 Self::NonCanonicalSize => f.write_str("non-canonical size"),
49 Self::UnexpectedLength => f.write_str("unexpected length"),
50 Self::UnexpectedString => f.write_str("unexpected string"),
51 Self::UnexpectedList => f.write_str("unexpected list"),
52 Self::ListLengthMismatch { got, expected } => {
53 write!(f, "unexpected list length (got {got}, expected {expected})")
54 }
55 Self::Custom(err) => f.write_str(err),
56 }
57 }
58}