use derive_more::{Display, Error};
#[derive(Debug, Display, Error)]
#[non_exhaustive]
pub enum StartError {
#[display(fmt = "invalid config")]
InvalidConfig,
Other(#[error(not(source))] String),
}
#[derive(Debug, Display, Error)]
#[display(fmt = "mailbox closed")]
pub struct SendError<T>(#[error(not(source))] pub T);
#[derive(Debug, Display, Error)]
pub enum TrySendError<T> {
#[display(fmt = "mailbox full")]
Full(#[error(not(source))] T),
#[display(fmt = "mailbox closed")]
Closed(#[error(not(source))] T),
}
impl<T> TrySendError<T> {
#[inline]
pub fn into_inner(self) -> T {
match self {
Self::Closed(inner) => inner,
Self::Full(inner) => inner,
}
}
#[inline]
pub fn map<U>(self, f: impl FnOnce(T) -> U) -> TrySendError<U> {
match self {
Self::Full(inner) => TrySendError::Full(f(inner)),
Self::Closed(inner) => TrySendError::Closed(f(inner)),
}
}
#[inline]
pub fn is_full(&self) -> bool {
matches!(self, Self::Full(_))
}
#[inline]
pub fn is_closed(&self) -> bool {
matches!(self, Self::Closed(_))
}
}
#[derive(Debug, Display, Error)]
pub enum RequestError<T> {
#[display(fmt = "request ignored")]
Ignored, #[display(fmt = "mailbox closed")]
Closed(#[error(not(source))] T),
}
impl<T> RequestError<T> {
#[inline]
pub fn into_inner(self) -> Option<T> {
match self {
Self::Ignored => None,
Self::Closed(inner) => Some(inner),
}
}
#[inline]
pub fn map<U>(self, f: impl FnOnce(T) -> U) -> RequestError<U> {
match self {
Self::Ignored => RequestError::Ignored,
Self::Closed(inner) => RequestError::Closed(f(inner)),
}
}
#[inline]
pub fn is_ignored(&self) -> bool {
matches!(self, Self::Ignored)
}
#[inline]
pub fn is_closed(&self) -> bool {
matches!(self, Self::Closed(_))
}
}
#[derive(Debug, Clone, Display, Error)]
pub enum TryRecvError {
#[display(fmt = "mailbox empty")]
Empty,
#[display(fmt = "mailbox closed")]
Closed,
}
impl TryRecvError {
#[inline]
pub fn is_empty(&self) -> bool {
matches!(self, Self::Empty)
}
#[inline]
pub fn is_closed(&self) -> bool {
matches!(self, Self::Closed)
}
}