1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
use core::fmt;
#[derive(Debug, PartialEq)]
pub enum DeserializationError {
InvalidValue(String),
UnexpectedEOF,
UnconsumedBytes,
UnknownError(String),
}
impl fmt::Display for DeserializationError {
#[rustfmt::skip]
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
Self::InvalidValue(err_msg) => {
write!(f, "{}", err_msg)
}
Self::UnexpectedEOF => {
write!(f, "unexpected EOF")
}
Self::UnconsumedBytes => {
write!(f, "not all bytes were consumed")
}
Self::UnknownError(err_msg) => {
write!(f, "unknown error: {}", err_msg)
}
}
}
}