mirror of
https://github.com/rust-lang/rust.git
synced 2026-02-15 02:24:21 +00:00
16 lines
446 B
Rust
16 lines
446 B
Rust
#![stable(feature = "futures_api", since = "1.36.0")]
|
|
|
|
//! Types and Traits for working with asynchronous tasks.
|
|
|
|
mod poll;
|
|
#[stable(feature = "futures_api", since = "1.36.0")]
|
|
pub use self::poll::Poll;
|
|
|
|
mod wake;
|
|
#[stable(feature = "futures_api", since = "1.36.0")]
|
|
pub use self::wake::{Context, ContextBuilder, LocalWaker, RawWaker, RawWakerVTable, Waker};
|
|
|
|
mod ready;
|
|
#[stable(feature = "ready_macro", since = "1.64.0")]
|
|
pub use ready::ready;
|