2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-04-14 04:16:44 +00:00
async-std/src/future/mod.rs
2019-08-12 12:50:35 +02:00

10 lines
144 B
Rust

//! Asynchronous values.
#[doc(inline)]
pub use std::future::Future;
pub use pending::pending;
pub use ready::ready;
mod pending;
mod ready;