Trait io_providers::stream::Provider [] [src]

pub trait Provider {
    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