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
85
86
87
88
89
90
91
92
93
94
95
use core::fmt::Debug;

pub trait ErrorType {
    type Error: Debug;
}

impl<E> ErrorType for &E
where
    E: ErrorType,
{
    type Error = E::Error;
}

impl<E> ErrorType for &mut E
where
    E: ErrorType,
{
    type Error = E::Error;
}

pub trait Sender: ErrorType {
    type Data<'a>;

    fn send(&mut self, value: Self::Data<'_>) -> Result<(), Self::Error>;
}

impl<S> Sender for &mut S
where
    S: Sender,
{
    type Data<'a> = S::Data<'a>;

    fn send(&mut self, value: Self::Data<'_>) -> Result<(), Self::Error> {
        (**self).send(value)
    }
}

pub trait Receiver: ErrorType {
    type Data<'a>
    where
        Self: 'a;

    fn recv(&mut self) -> Result<Self::Data<'_>, Self::Error>;
}

impl<R> Receiver for &mut R
where
    R: Receiver,
{
    type Data<'a> = R::Data<'a> where Self: 'a;

    fn recv(&mut self) -> Result<Self::Data<'_>, Self::Error> {
        (**self).recv()
    }
}

pub mod asynch {
    pub use super::ErrorType;

    pub trait Sender: ErrorType {
        type Data<'a>: Send;

        async fn send(&mut self, value: Self::Data<'_>) -> Result<(), Self::Error>;
    }

    impl<S> Sender for &mut S
    where
        S: Sender,
    {
        type Data<'a> = S::Data<'a>;

        async fn send(&mut self, value: Self::Data<'_>) -> Result<(), Self::Error> {
            (**self).send(value).await
        }
    }

    pub trait Receiver: ErrorType {
        type Data<'a>
        where
            Self: 'a;

        async fn recv(&mut self) -> Result<Self::Data<'_>, Self::Error>;
    }

    impl<R> Receiver for &mut R
    where
        R: Receiver,
    {
        type Data<'a> = R::Data<'a> where Self: 'a;

        async fn recv(&mut self) -> Result<Self::Data<'_>, Self::Error> {
            (**self).recv().await
        }
    }
}