async_async_io
Currently, only for tokio
.
AsyncAsyncRead
Definition:
```rust
pub struct AsyncReadBytes {
reader: io::Cursor
impl AsyncAsyncRead for AsyncReadBytes {
async fn read(&mut self, buf: &mut [u8]) -> io::Result
Conversion to AsyncRead
:
```rust let stream = AsyncReadBytes::new(b"hello world".tovec()); let mut asyncread = PollRead::new(stream);
let mut writer = [0; 5]; asyncread.readexact(&mut writer).await.unwrap(); assert_eq!(&writer, b"hello"); ```
AsyncAsyncWrite
Definition:
```rust
pub struct AsyncWriteBytes {
writer: Vec
impl AsyncAsyncWrite for AsyncWriteBytes {
async fn write(&mut self, buf: &[u8]) -> io::Result
async fn flush(&mut self) -> io::Result<()> {
std::io::Write::flush(&mut self.writer)
}
async fn shutdown(&mut self) -> io::Result<()> {
Ok(())
}
} ```
Conversion to AsyncWrite
:
```rust let writer = AsyncWriteBytes::new(); let mut async_write = PollWrite::new(writer);
asyncwrite.writeall(b"hello world").await.unwrap(); asserteq!(asyncwrite.into_inner().written(), b"hello world"); ```