blob: 29bae69ea83c1a2cf5a25bd30102aeb0ea017c7a [file] [log] [blame]
#![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::{Context, Waker, RawWaker, RawWakerVTable};