Files
rust/library/core/src/task/mod.rs

16 lines
419 B
Rust
Raw Normal View History

2019-04-05 14:14:19 -07:00
#![stable(feature = "futures_api", since = "1.36.0")]
2018-06-26 16:40:42 +02:00
//! Types and Traits for working with asynchronous tasks.
mod poll;
2019-04-05 14:14:19 -07:00
#[stable(feature = "futures_api", since = "1.36.0")]
2018-06-26 16:40:42 +02:00
pub use self::poll::Poll;
mod wake;
2019-04-05 14:14:19 -07:00
#[stable(feature = "futures_api", since = "1.36.0")]
pub use self::wake::{Context, RawWaker, RawWakerVTable, Waker};
2020-04-05 17:50:45 +02:00
mod ready;
#[unstable(feature = "ready_macro", issue = "70922")]
pub use ready::ready;