]> git.lizzy.rs Git - rust.git/blob - library/std/src/future.rs
Auto merge of #70743 - oli-obk:eager_const_to_pat_conversion, r=eddyb
[rust.git] / library / std / src / future.rs
1 //! Asynchronous values.
2
3 #[doc(inline)]
4 #[stable(feature = "futures_api", since = "1.36.0")]
5 pub use core::future::Future;
6
7 #[doc(inline)]
8 #[unstable(feature = "gen_future", issue = "50547")]
9 pub use core::future::{from_generator, get_context, ResumeTy};
10
11 #[doc(inline)]
12 #[stable(feature = "future_readiness_fns", since = "1.48.0")]
13 pub use core::future::{pending, ready, Pending, Ready};
14
15 #[doc(inline)]
16 #[unstable(feature = "into_future", issue = "67644")]
17 pub use core::future::IntoFuture;