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
80
81
82
83
84
use std::fmt;
#[derive(Debug)]
pub enum RecycleError<E> {
Message(String),
Backend(E),
}
impl<E> From<E> for RecycleError<E> {
fn from(e: E) -> Self {
Self::Backend(e)
}
}
impl<E> fmt::Display for RecycleError<E>
where
E: fmt::Display,
{
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
Self::Message(msg) => write!(f, "An error occured while recycling an object: {}", msg),
Self::Backend(e) => write!(f, "An error occured while recycling an object: {}", e),
}
}
}
impl<E> std::error::Error for RecycleError<E> where E: std::error::Error {}
#[derive(Debug)]
pub enum TimeoutType {
Wait,
Create,
Recycle,
}
#[derive(Debug)]
pub enum PoolError<E> {
Timeout(TimeoutType),
Backend(E),
Closed,
NoRuntimeSpecified,
}
impl<E> From<E> for PoolError<E> {
fn from(e: E) -> Self {
Self::Backend(e)
}
}
impl<E> fmt::Display for PoolError<E>
where
E: fmt::Display,
{
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
Self::Timeout(tt) => match tt {
TimeoutType::Wait => write!(
f,
"A timeout occured while waiting for a slot to become available"
),
TimeoutType::Create => write!(f, "A timeout occured while creating a new object"),
TimeoutType::Recycle => write!(f, "A timeout occured while recycling an object"),
},
Self::Backend(e) => write!(f, "An error occured while creating a new object: {}", e),
Self::Closed => write!(f, "The pool has been closed."),
Self::NoRuntimeSpecified => write!(f, "No runtime specified."),
}
}
}
impl<E> std::error::Error for PoolError<E> where E: std::error::Error {}