]> git.lizzy.rs Git - rust.git/blob - src/libcore/future/mod.rs
Rollup merge of #65244 - seanmonstar:into-future, r=seanmonstar
[rust.git] / src / libcore / future / mod.rs
1 #![stable(feature = "futures_api", since = "1.36.0")]
2
3 //! Asynchronous values.
4
5 mod future;
6 #[stable(feature = "futures_api", since = "1.36.0")]
7 pub use self::future::Future;
8
9 #[unstable(feature = "into_future", issue = "67644")]
10 pub use self::future::IntoFuture;