blob: 9b8f59811620083edf04be7e8cb1b8795d2d1253 [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::{Waker, RawWaker, RawWakerVTable};