Struct io_providers::stream::Std [] [src]

pub struct Std {
    // some fields omitted
}

Provides access to the standard streams (stdin, stdout and stderr).

Methods

impl Std
[src]

fn new() -> Std

Constructs a new standard stream provider.

Trait Implementations

impl Provider for Std
[src]

fn input(&mut self) -> &mut Read

Gets the input stream.

fn output(&mut self) -> &mut Write

Gets the output stream.

fn error(&mut self) -> &mut Write

Gets the error stream.