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
use thiserror::Error;

#[derive(Error, Debug)]
pub enum Error {
    #[error("io error")]
    IoError(#[from] std::io::Error),
    #[error("timeout/retry error")]
    Timeout,
    #[error("ecc error {:?}", .0)]
    Ecc(crate::command::EccError),
    #[error("serial port error")]
    SerialPort(#[from] serialport::Error),
    #[error("invalid ecc address")]
    InvalidAddress,
}

impl Error {
    pub(crate) fn timeout() -> Self {
        Self::Timeout
    }

    pub(crate) fn ecc(err: crate::command::EccError) -> Self {
        Self::Ecc(err)
    }

    pub(crate) fn invalid_address() -> Self {
        Self::InvalidAddress
    }
}