We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Ready::into_inner()
1 parent 99d389d commit 8405cfdCopy full SHA for 8405cfd
library/core/src/future/ready.rs
@@ -34,13 +34,12 @@ impl<T> Ready<T> {
34
/// # Examples
35
///
36
/// ```
37
- /// #![feature(ready_into_inner)]
38
/// use std::future;
39
40
/// let a = future::ready(1);
41
/// assert_eq!(a.into_inner(), 1);
42
43
- #[unstable(feature = "ready_into_inner", issue = "101196")]
+ #[stable(feature = "ready_into_inner", since = "CURRENT_RUSTC_VERSION")]
44
#[must_use]
45
#[inline]
46
pub fn into_inner(self) -> T {
0 commit comments