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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
use std::{error::Error, fmt, io};
use crate::core::errors;
#[derive(Debug)]
pub enum ErrorEnum {
Error,
Invalid,
NotFound,
}
impl fmt::Display for ErrorEnum {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
fmt::Debug::fmt(self, f)
}
}
#[derive(Debug)]
pub enum DmError {
Dm(ErrorEnum, String),
Core(errors::Error),
}
pub type DmResult<T> = Result<T, DmError>;
impl From<errors::Error> for DmError {
fn from(err: errors::Error) -> DmError {
DmError::Core(err)
}
}
impl From<io::Error> for DmError {
fn from(err: io::Error) -> DmError {
DmError::Core(errors::ErrorKind::GeneralIoError(err).into())
}
}
impl fmt::Display for DmError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match *self {
DmError::Core(ref err) => write!(f, "DM Core error: {}", err),
DmError::Dm(ref err, ref msg) => write!(f, "DM error: {}: {}", err, msg),
}
}
}
impl Error for DmError {
fn description(&self) -> &str {
match *self {
DmError::Core(ref err) => err.description(),
DmError::Dm(_, ref msg) => msg,
}
}
}