-
Notifications
You must be signed in to change notification settings - Fork 13.6k
Open
Labels
A-processArea: `std::process` and `std::env`Area: `std::process` and `std::env`C-tracking-issueCategory: An issue tracking the progress of sth. like the implementation of an RFCCategory: An issue tracking the progress of sth. like the implementation of an RFCT-libs-apiRelevant to the library API team, which will review and decide on the PR/issue.Relevant to the library API team, which will review and decide on the PR/issue.
Description
Feature gate: #![feature(windows_process_extensions_async_pipes)]
This is a tracking issue for async_pipes()
Windows only extension method for process::Command
. This enables forcing std::process::Command::spawn
to create pipes as async on Windows. See tokio-rs/tokio#4670 for background.
Public API
// std::os::windows::process
trait CommandExt {
fn async_pipes(&mut self, always_async: bool) -> &mut process::Command;
}
Steps / History
- Implementation: Windows:
CommandExt::async_pipes
#97149 - Final comment period (FCP)
- Stabilization PR
Unresolved Questions
- None yet.
Metadata
Metadata
Assignees
Labels
A-processArea: `std::process` and `std::env`Area: `std::process` and `std::env`C-tracking-issueCategory: An issue tracking the progress of sth. like the implementation of an RFCCategory: An issue tracking the progress of sth. like the implementation of an RFCT-libs-apiRelevant to the library API team, which will review and decide on the PR/issue.Relevant to the library API team, which will review and decide on the PR/issue.