[][src]Trait bawawa::StandardError

pub trait StandardError<'a>: Control + 'a {
    fn standard_error(&mut self) -> &mut ChildStderr;

    fn framed_stderr<D, Item>(
        &mut self,
        decoder: D
    ) -> FramedRead<&mut ChildStderr, D>
    where
        D: Decoder<Item = Item>
, { ... }
fn capture_stderr<D, Item>(
        self,
        decoder: D
    ) -> Capture<'a, Self, D, ChildStderr, Item>
    where
        D: Decoder<Item = Item>
, { ... } }

Access the standard error output of a running Process

Required methods

fn standard_error(&mut self) -> &mut ChildStderr

get access to the standard output

Loading content...

Provided methods

fn framed_stderr<D, Item>(
    &mut self,
    decoder: D
) -> FramedRead<&mut ChildStderr, D> where
    D: Decoder<Item = Item>, 

fn capture_stderr<D, Item>(
    self,
    decoder: D
) -> Capture<'a, Self, D, ChildStderr, Item> where
    D: Decoder<Item = Item>, 

Loading content...

Implementors

impl<'a> StandardError<'a> for Process[src]

impl<'a, C, D, Item> StandardError<'a> for Capture<'a, C, D, ChildStdout, Item> where
    C: StandardError<'a>,
    D: 'a,
    Item: 'a, 
[src]

impl<'a, C, E, Item> StandardError<'a> for SendStdin<'a, C, E, Item> where
    C: StandardError<'a>,
    E: 'a,
    Item: 'a, 
[src]

Loading content...