Tracking Issue for CommandExt::groups
· Issue #90747 · rust-lang/rust (original) (raw)
Feature gate: #![feature(setgroups)]
This is a tracking issue for std::os::unix::process::CommandExt::groups
.
Sets the supplementary group IDs for the calling process. Translates to a setgroups
call in the child process.
Public API
// std::os::unix::process
pub trait CommandExt: Sealed { fn groups(&mut self, groups: &[u32]) -> &mut Command; }
Steps / History
- RFE: feature request: std::os::unix::process::CommandExt.groups() #38527
- Implementation: Add setgroups to std::os::unix::process::CommandExt #72160
- Final comment period (FCP)
- Stabilization PR
Unresolved Questions
- None yet.