Struct bitflags::__core::process::ChildStdin [] [src]

pub struct ChildStdin {
    // some fields omitted
}
1.0.0

A handle to a child process's stdin

Trait Implementations

impl AsRawFd for ChildStdin1.2.0

fn as_raw_fd(&self) -> i32

impl IntoRawFd for ChildStdin1.2.0

fn into_raw_fd(self) -> i32

impl Write for ChildStdin

fn write(&mut self, buf: &[u8]) -> Result<usize, Error>

fn flush(&mut self) -> Result<(), Error>

fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>

fn write_fmt(&mut self, fmt: Arguments) -> Result<(), Error>

fn by_ref(&mut self) -> &mut Self

fn broadcast<W>(self, other: W) -> Broadcast<Self, W> where W: Write