mirror of
https://github.com/async-rs/async-std.git
synced 2025-04-14 04:16:44 +00:00
10 lines
144 B
Rust
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;
|