]> git.proxmox.com Git - rustc.git/blob - library/core/src/task/mod.rs
New upstream version 1.56.0~beta.4+dfsg1
[rustc.git] / library / core / src / task / mod.rs
1 #![stable(feature = "futures_api", since = "1.36.0")]
2
3 //! Types and Traits for working with asynchronous tasks.
4
5 mod poll;
6 #[stable(feature = "futures_api", since = "1.36.0")]
7 pub use self::poll::Poll;
8
9 mod wake;
10 #[stable(feature = "futures_api", since = "1.36.0")]
11 pub use self::wake::{Context, RawWaker, RawWakerVTable, Waker};
12
13 mod ready;
14 #[stable(feature = "ready_macro", since = "1.56.0")]
15 pub use ready::ready;