struct Stdout;Expand description
An empty struct to hold the fmt::Write trait.
Trait Implementations§
Source§impl Write for Stdout
impl Write for Stdout
Source§fn write_str(&mut self, s: &str) -> Result
fn write_str(&mut self, s: &str) -> Result
Put strings onto the screen. See Also: _write_str.
1.1.0§fn write_char(&mut self, c: char) -> Result<(), Error>
fn write_char(&mut self, c: char) -> Result<(), Error>
Writes a [
char] into this writer, returning whether the write succeeded. Read more