Async IO traits that use futures instead of poll. This is an experiment to see
if using async fn
for the futures::io
traits is possible.
This is useful because currently implementing AsyncRead
, AsyncWrite
, and
Stream
require knowledge of Poll
, Pin
, and arbitrary self types. We
think it would be an ergonomics improvement if knowledge of these concepts was
not required to implement these traits. Instead once async fn
in traits comes
around we think that would make a great fit:
```rust
pub trait AsyncRead {
async fn read(&mut self, buf: &mut [u8]) -> io::Result
pub trait AsyncWrite {
async fn write(&mut self, buf: &[u8]) -> io::Result
pub trait AsyncIterator {
type Item;
async fn next(&mut self) -> Option
These would be direct async counterparts to Read
, Write
and Iterator
:
```rust
pub trait AsyncRead {
fn read(&mut self, buf: &mut [u8]) -> io::Result
pub trait AsyncWrite {
fn write(&mut self, buf: &[u8]) -> io::Result
pub trait AsyncIterator {
type Item;
fn next(&mut self) -> Option
However currently async fn
in traits doesn't work. So we're defining these
traits with an associated type instead.
```rust pub trait AsyncRead { type Fut: Future
pub trait AsyncWrite { type Fut: Future
pub trait AsyncIterator { type Item; type Fut: Future
Because of compiler reasons this means there currently is the overhead of an extra box. But we think that's fine, as it's unlikely to become a bottleneck, and this would be temporary anyway.
However a limitation is that this can't return borrowed values, as it relies on GATs. Which seems like the most convincing counterpoint to using these traits today.
```rust
use futures::executor::blockon; use associatedasync_io::AsyncIterator; use futures::future::{self, Future}; use std::pin::Pin;
struct KittenIterator {
cursor: usize,
kittens: Vec
impl KittenIterator {
fn new(mut kittens: Vec
impl AsyncIterator for KittenIterator {
type Item = String;
type Fut = Pin
fn main () { blockon(async { let kittens = vec!["chashu".toowned(), "nori".to_owned()]; let mut kittens = KittenIterator::new(kittens); AsyncIterator::next(&mut kittens); }) } ```
sh
$ cargo add associate-async-io
This crate uses #![deny(unsafe_code)]
to ensure everything is implemented in
100% Safe Rust.
Want to join us? Check out our "Contributing" guide and take a look at some of these issues:
None.
MIT OR Apache-2.0