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 {}