[][src]Struct os_pipe::PipeWriter

pub struct PipeWriter(_);

The writing end of a pipe, returned by pipe.

PipeWriter implements Into<Stdio>, so you can pass it as an argument to Command::stdout or Command::stderr to spawn a child process that writes to the pipe.

Methods

impl PipeWriter[src]

pub fn try_clone(&self) -> Result<PipeWriter>[src]

Trait Implementations

impl From<PipeWriter> for Stdio[src]

impl Debug for PipeWriter[src]

impl Write for PipeWriter[src]

impl<'a> Write for &'a PipeWriter[src]

impl AsRawFd for PipeWriter[src]

impl FromRawFd for PipeWriter[src]

impl IntoRawFd for PipeWriter[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]