Tracking Issue for windows_process_extensions_async_pipes
· Issue #98289 · rust-lang/rust (original) (raw)
Navigation Menu
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
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.