Struct std::process::ChildStdin 1.0.0[−][src]
pub struct ChildStdin { /* fields omitted */ }Expand description
A handle to a child process’s standard input (stdin).
This struct is used in the stdin field on Child.
When an instance of ChildStdin is dropped, the ChildStdin’s underlying
file handle will be closed. If the child process was blocked on input prior
to being dropped, it will become unblocked after dropping.
Trait Implementations
impl AsRawFd for ChildStdin1.2.0[src]
impl AsRawFd for ChildStdin1.2.0[src]impl AsRawHandle for ChildStdin1.2.0[src]
impl AsRawHandle for ChildStdin1.2.0[src]fn as_raw_handle(&self) -> RawHandle[src]
fn as_raw_handle(&self) -> RawHandle[src]Extracts the raw handle, without taking any ownership.
impl Debug for ChildStdin1.16.0[src]
impl Debug for ChildStdin1.16.0[src]impl From<ChildStdin> for Stdio1.20.0[src]
impl From<ChildStdin> for Stdio1.20.0[src]fn from(child: ChildStdin) -> Stdio[src]
fn from(child: ChildStdin) -> Stdio[src]Converts a ChildStdin into a Stdio
Examples
ChildStdin will be converted to Stdio using Stdio::from under the hood.
use std::process::{Command, Stdio}; let reverse = Command::new("rev") .stdin(Stdio::piped()) .spawn() .expect("failed reverse command"); let _echo = Command::new("echo") .arg("Hello, world!") .stdout(reverse.stdin.unwrap()) // Converted into a Stdio here .output() .expect("failed echo command"); // "!dlrow ,olleH" echoed to consoleRun
impl IntoRawFd for ChildStdin1.4.0[src]
impl IntoRawFd for ChildStdin1.4.0[src]fn into_raw_fd(self) -> RawFd[src]
fn into_raw_fd(self) -> RawFd[src]Consumes this object, returning the raw underlying file descriptor. Read more
impl IntoRawHandle for ChildStdin1.4.0[src]
impl IntoRawHandle for ChildStdin1.4.0[src]fn into_raw_handle(self) -> RawHandle[src]
fn into_raw_handle(self) -> RawHandle[src]Consumes this object, returning the raw underlying handle. Read more
impl Write for ChildStdin[src]
impl Write for ChildStdin[src]fn write(&mut self, buf: &[u8]) -> Result<usize>[src]
fn write(&mut self, buf: &[u8]) -> Result<usize>[src]Write a buffer into this writer, returning how many bytes were written. Read more
fn is_write_vectored(&self) -> bool[src]
fn is_write_vectored(&self) -> bool[src]Determines if this Writer has an efficient write_vectored
implementation. Read more
fn flush(&mut self) -> Result<()>[src]
fn flush(&mut self) -> Result<()>[src]Flush this output stream, ensuring that all intermediately buffered contents reach their destination. Read more
fn write_all(&mut self, buf: &[u8]) -> Result<()>[src]
fn write_all(&mut self, buf: &[u8]) -> Result<()>[src]Attempts to write an entire buffer into this writer. Read more
fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<()>[src]
fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<()>[src]Attempts to write multiple buffers into this writer. Read more
impl Write for &ChildStdin1.48.0[src]
impl Write for &ChildStdin1.48.0[src]fn write(&mut self, buf: &[u8]) -> Result<usize>[src]
fn write(&mut self, buf: &[u8]) -> Result<usize>[src]Write a buffer into this writer, returning how many bytes were written. Read more
fn is_write_vectored(&self) -> bool[src]
fn is_write_vectored(&self) -> bool[src]Determines if this Writer has an efficient write_vectored
implementation. Read more
fn flush(&mut self) -> Result<()>[src]
fn flush(&mut self) -> Result<()>[src]Flush this output stream, ensuring that all intermediately buffered contents reach their destination. Read more
fn write_all(&mut self, buf: &[u8]) -> Result<()>[src]
fn write_all(&mut self, buf: &[u8]) -> Result<()>[src]Attempts to write an entire buffer into this writer. Read more
fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<()>[src]
fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<()>[src]Attempts to write multiple buffers into this writer. Read more