Available on
unstable
only.Expand description
A module for working with processes.
This module is mostly concerned with spawning and interacting with child processes, but it also provides abort and exit for terminating the current process.
This is an async version of std::process
.
StructsΒ§
- Child
- A spawned child process.
- Child
Stderr - A handle to a child processβs standard error (stderr).
- Child
Stdin - A handle to a child processβs standard input (stdin).
- Child
Stdout - A handle to a child processβs standard output (stdout).
- Command
- A builder for spawning processes.
- Exit
Status - Describes the result of a process after it has terminated.
- Output
- The output of a finished process.
- Stdio
- Describes what to do with a standard I/O stream for a child process when
passed to the
stdin
,stdout
, andstderr
methods ofCommand
.