Module std::io::processExperimental
[-]
[+]
[src]
Bindings for executing child processes
Reexports
pub use self::StdioContainer::*; |
pub use self::ProcessExit::*; |
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. |
Constants
| MustDieSignal | Signal a process to exit immediately, forcibly killing it. Corresponds to SIGKILL on unix platforms. |
| PleaseExitSignal | Signal a process to exit, without forcibly killing it. Corresponds to SIGTERM on unix platforms. |
Type Definitions
| EnvMap | A HashMap representation of environment variables. |