error.rs
1.91 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
use std::{fmt::Display, pin::Pin};
use diesel::result;
use diffy::ParsePatchError;
use r2d2;
type ParentError = Option<Pin<Box<dyn std::error::Error>>>;
#[derive(Debug)]
pub(crate) struct Error {
source: ParentError,
message: String,
}
unsafe impl Send for Error {}
pub(crate) type Result<T> = std::result::Result<T, Error>;
impl std::error::Error for Error {
fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
self.source.as_deref()
}
}
impl Display for Error {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
Error { source: Some(source), message } =>
write!(f, "{}: {}", message, source),
Error { source: None, message } => write!(f, "{}", message),
}
}
}
impl From<&str> for Error {
fn from(message: &str) -> Self {
Self { source: None, message: String::from(message) }
}
}
impl From<result::Error> for Error {
fn from(source: result::Error) -> Self {
Self { source: Some(Box::pin(source))
, message: String::from("Diesel Result Error")
}
}
}
impl From<r2d2::Error> for Error {
fn from(source: r2d2::Error) -> Self {
Self { source: Some(Box::pin(source))
, message: String::from("Diesel Result Error")
}
}
}
impl From<std::io::Error> for Error {
fn from(source: std::io::Error) -> Self {
Self { source: Some(Box::pin(source))
, message: String::from("IO Error")
}
}
}
impl From<std::str::Utf8Error> for Error {
fn from(source: std::str::Utf8Error) -> Self {
Self { source: Some(Box::pin(source))
, message: String::from("IO Error")
}
}
}
impl From<ParsePatchError> for Error {
fn from(source: ParsePatchError) -> Self {
Self { source: Some(Box::pin(source))
, message: String::from("IO Error")
}
}
}