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
use async_trait::async_trait;

use crate::Streams;

use super::maybe;

#[derive(Debug)]
pub struct Connecting<T>(pub T);

#[cfg_attr(not(target_family = "wasm"), async_trait)]
#[cfg_attr(target_family = "wasm", async_trait(?Send))]
impl<T> crate::traits::Connecting for Connecting<T>
where
    T: maybe::Send,
{
    type Connection = T;
    type Error = std::convert::Infallible;

    async fn wait_connect(self) -> Result<Self::Connection, Self::Error> {
        Ok(self.0)
    }
}

#[derive(Debug)]
pub struct OpeningUniStream<T: Streams>(pub T::SendStream);

#[cfg_attr(not(target_family = "wasm"), async_trait)]
#[cfg_attr(target_family = "wasm", async_trait(?Send))]
impl<T> crate::traits::OpeningUniStream for OpeningUniStream<T>
where
    T: Streams,
{
    type Streams = T;
    type Error = std::convert::Infallible;

    async fn wait_uni(self) -> Result<<T as Streams>::SendStream, Self::Error> {
        Ok(self.0)
    }
}

#[derive(Debug)]
pub struct OpeningBiStream<T: Streams>(pub (T::SendStream, T::RecvStream));

#[cfg_attr(not(target_family = "wasm"), async_trait)]
#[cfg_attr(target_family = "wasm", async_trait(?Send))]
impl<T> crate::traits::OpeningBiStream for OpeningBiStream<T>
where
    T: Streams,
{
    type Streams = T;
    type Error = std::convert::Infallible;

    async fn wait_bi(self) -> Result<crate::traits::BiStreamsFor<T>, Self::Error> {
        Ok(self.0)
    }
}