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
43
44
45
46
47
48
49
50
51
use std::error;
use std::fmt;
use std::io;
use std::convert;
#[derive(Debug, PartialEq)]
pub enum DecoderError {
InvalidInput,
Interrupted,
InputUnderflow,
InvalidTag,
}
impl From<io::Error> for DecoderError {
fn from(_err: io::Error) -> Self {
Self::Interrupted
}
}
impl From<convert::Infallible> for DecoderError {
fn from(_: convert::Infallible) -> Self {
unreachable!()
}
}
impl fmt::Display for DecoderError {
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
match self {
Self::InvalidInput => write!(fmt, "Invalid byte stream."),
Self::Interrupted => write!(fmt, "Read operation interrupted."),
Self::InputUnderflow => write!(fmt, "Not enough bytes."),
Self::InvalidTag => write!(fmt, "Found tag with invalid number."),
}
}
}
impl error::Error for DecoderError {}