Files
rust/src/libcore/task/mod.rs

12 lines
331 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")]
2019-03-11 16:56:00 -07:00
pub use self::wake::{Context, Waker, RawWaker, RawWakerVTable};