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
//! Mock APIs for `tokio` traits

/// Mock APIs for `tokio::io` traits
#[cfg(feature = "mock-tokio-1")]
pub mod io {
    use core::pin::Pin;
    use core::task::{Context, Poll};
    use std::io::IoSlice;

    use tokio_1::io::{AsyncBufRead, AsyncRead, AsyncSeek, AsyncWrite, ReadBuf, Result, SeekFrom};

    use crate::unimock;

    #[unimock(prefix=crate, api=AsyncBufReadMock, mirror=AsyncBufRead)]
    pub trait AsyncBufRead {
        fn poll_fill_buf(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<&[u8]>>;
        fn consume(self: Pin<&mut Self>, amt: usize);
    }

    #[unimock(prefix=crate, api=AsyncReadMock, mirror=AsyncRead)]
    pub trait AsyncRead {
        fn poll_read(
            self: Pin<&mut Self>,
            cx: &mut Context<'_>,
            buf: &mut ReadBuf<'_>,
        ) -> Poll<Result<()>>;
    }

    #[unimock(prefix=crate, api=AsyncSeekMock, mirror=AsyncSeek)]
    pub trait AsyncSeek {
        fn start_seek(self: Pin<&mut Self>, position: SeekFrom) -> Result<()>;
        fn poll_complete(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<u64>>;
    }

    #[unimock(prefix=crate, api=AsyncWriteMock, mirror=AsyncWrite)]
    pub trait AsyncWrite {
        fn poll_write(
            self: Pin<&mut Self>,
            cx: &mut Context<'_>,
            buf: &[u8],
        ) -> Poll<Result<usize>>;

        fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<()>>;

        fn poll_shutdown(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<()>>;

        fn poll_write_vectored(
            self: Pin<&mut Self>,
            cx: &mut Context<'_>,
            bufs: &[IoSlice<'_>],
        ) -> Poll<Result<usize>> {
        }

        fn is_write_vectored(&self) -> bool {}
    }
}