]> git.lizzy.rs Git - rust.git/blob - src/libcore/task/mod.rs
Rollup merge of #58468 - RalfJung:maybe-uninit-split, r=Centril
[rust.git] / src / libcore / task / mod.rs
1 #![unstable(feature = "futures_api",
2             reason = "futures in libcore are unstable",
3             issue = "50547")]
4
5 //! Types and Traits for working with asynchronous tasks.
6
7 mod poll;
8 pub use self::poll::Poll;
9
10 mod wake;
11 pub use self::wake::{Waker, RawWaker, RawWakerVTable};