Crate command_group

source ·
Expand description

An extension to std::process::Command to support process groups on Unix and Windows. With Tokio, the AsyncCommandGroup trait extends tokio::process::Command.

On Unix, the UnixChildExt trait additionally provides support for sending signals to processes and process groups (it’s implemented on this crate’s GroupChild, AsyncGroupChild, Tokio’s Child and std’s Child).

Re-exports

Modules

Structs

  • Representation of a running or exited child process group (Tokio variant).
  • Representation of a running or exited child process group.

Traits