Trait io_providers::std_streams::StdStreams[][src]

pub trait StdStreams {
    fn input(&mut self) -> &mut Read;
fn output(&mut self) -> &mut Write;
fn error(&mut self) -> &mut Write; }

Provides access to input, output and error streams.

Required Methods

Gets the input stream.

Gets the output stream.

Gets the error stream.

Implementors