Closed
Description
Feature gate: #![feature(ready_into_inner)]
This is a tracking issue for Ready::into_inner()
.
Adds a method to Ready
that unwraps the value without an asynchronous context. See the futures
library for an equivalent function.
Public API
impl<T> Ready<T> {
#[must_use]
#[inline]
pub fn into_inner(self) -> T;
}
Steps / History
- Implementation: Implement
Ready::into_inner()
#101189 - Final comment period (FCP)1
- Stabilization PR: Stabilize
Ready::into_inner()
#116528
Unresolved Questions
- None yet.
Footnotes
Metadata
Metadata
Assignees
Labels
Category: An issue tracking the progress of sth. like the implementation of an RFCRelevant to the library API team, which will review and decide on the PR/issue.Working group: Async & awaitThis issue / PR is in PFCP or FCP with a disposition to merge it.The final comment period is finished for this PR / Issue.