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
use std::error;
use std::fmt;
use std::io;
use std::convert;

/// Contains error options that can be encountered while performing the encoding
/// operations.
#[derive(Debug, PartialEq)]
pub enum EncoderError {
    /// Indicates that the data size limit has been reached.
    DataOverflow,

    /// Indicates that the encoder encountered an I/O interruption. Interrupted
    /// operations can typically be retried.
    Interrupted,
    
    /// Indicates that the encoder was unable to proceed due to the key's
    /// invalid tag number. A tag number must be unique per message and the
    /// value can be between `1` and `2^29 - 1`.
    InvalidTag,
}

impl From<io::Error> for EncoderError {
    fn from(_err: io::Error) -> Self {
        Self::Interrupted
    }
}

impl From<convert::Infallible> for EncoderError { // until solved: https://github.com/rust-lang/rust/issues/64715
    fn from(_: convert::Infallible) -> Self {
        unreachable!()
    }
}

impl fmt::Display for EncoderError {
    fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
        match self {
            Self::DataOverflow => write!(fmt, "Available data type size exceeded."),
            Self::Interrupted => write!(fmt, "Write operation interrupted."),
            Self::InvalidTag => write!(fmt, "Found tag with invalid number."),
        }
    }
}

impl error::Error for EncoderError {}