about summary refs log tree commit diff
path: root/src/libcore/task/mod.rs
blob: 27760749c1d4b63ddca3afbf14d25da6d2c5ef3e (plain)
1
2
3
4
5
6
7
8
9
10
11
#![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, RawWaker, RawWakerVTable, Waker};