Module std::io::process[src]
Bindings for executing child processes
Structs
| Command | The |
| Process | Representation of a running or exited child process. |
| ProcessOutput | The output of a finished process. |
Enums
| ProcessExit | Describes the result of a process after it has terminated. Note that Windows have no signals, so the result is usually ExitStatus. |
| StdioContainer | Describes what to do with a standard io stream for a child process. |
Statics
pub static MustDieSignal: int = libc::SIGKILL as int |
Signal a process to exit immediately, forcibly killing it. Corresponds to SIGKILL on unix platforms. |
pub static PleaseExitSignal: int = libc::SIGTERM as int |
Signal a process to exit, without forcibly killing it. Corresponds to SIGTERM on unix platforms. |