pub type Child = Child;Aliased Type§
pub struct Child {
pub stdin: Option<ChildStdin>,
pub stdout: Option<ChildStdout>,
pub stderr: Option<ChildStderr>,
/* private fields */
}Fields§
§stdin: Option<ChildStdin>The handle for writing to the child’s standard input (stdin), if it has been captured.
stdout: Option<ChildStdout>The handle for reading from the child’s standard output (stdout), if it has been captured.
stderr: Option<ChildStderr>The handle for reading from the child’s standard error (stderr), if it has been captured.