about summary refs log tree commit diff
path: root/src/libcore/task/mod.rs
blob: 9552e53ebf8493da26066157a797a08412889235 (plain)
1
2
3
4
5
6
7
8
9
10
11
#![unstable(feature = "futures_api",
            reason = "futures in libcore are unstable",
            issue = "50547")]

//! Types and Traits for working with asynchronous tasks.

mod poll;
pub use self::poll::Poll;

mod wake;
pub use self::wake::{Waker, LocalWaker, UnsafeWake};