pub struct Stdio(_);
Describes what to do with a standard I/O stream for a child process.
impl Stdio
[src]
fn piped() -> Stdio
A new pipe should be arranged to connect the parent and child processes.
fn inherit() -> Stdio
The child inherits from the corresponding parent descriptor.
fn null() -> Stdio
This stream will be ignored. This is the equivalent of attaching the stream to /dev/null
impl Debug for Stdio
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter.
impl FromRawFd for Stdio
unsafe fn from_raw_fd(fd: RawFd) -> Stdio
Constructs a new instance of Self
from the given raw file descriptor. Read more
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/process/struct.Stdio.html