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