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
/// An error type returned by `Sink::try_send`, when the sink is full, or is closed.
#[derive(Debug, PartialEq, Eq)]
pub enum TrySendError<T> {
    /// The sink could accept the item at a later time
    Pending(T),
    /// The sink is closed, and will never accept the item
    Rejected(T),
}

impl<T> std::fmt::Display for TrySendError<T>
where
    T: std::fmt::Debug,
{
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.write_fmt(format_args!("{:?}", &self))?;

        Ok(())
    }
}

impl<T> std::error::Error for TrySendError<T> where T: std::fmt::Debug {}

/// An error type returned by `Sink::send`, if the sink is closed while a send is in progress.
#[derive(Debug, PartialEq, Eq)]
pub struct SendError<T>(pub T);

impl<T> std::fmt::Display for SendError<T>
where
    T: std::fmt::Debug,
{
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.write_fmt(format_args!("{:?}", &self))?;

        Ok(())
    }
}

impl<T> std::error::Error for SendError<T> where T: std::fmt::Debug {}