2018-06-26 16:40:42 +02:00
|
|
|
#![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;
|
2019-01-29 19:02:42 -08:00
|
|
|
pub use self::wake::{Waker, RawWaker, RawWakerVTable};
|