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

Unresolved Questions