async-std 0.99.3

Async version of the Rust standard library
Documentation
1
2
3
4
5
6
7
8
9
10
//! Asynchronous values.

#[doc(inline)]
pub use std::future::Future;

pub use pending::pending;
pub use ready::ready;

mod pending;
mod ready;