Struct std::io::Stderr 1.0.0
[−]
[src]
pub struct Stderr { /* fields omitted */ }Trait Implementations
impl Write for Stderr[src]
fn write(&mut self, buffer: &[u8]) -> Result<usize>
fn flush(&mut self) -> Result<()>
fn write_all(&mut self, buf: &[u8]) -> Result<()>
fn write_fmt(&mut self, fmt: Arguments) -> Result<()>
fn by_ref(&mut self) -> &mut Self where Self: Sized
impl Write for Stderr[src]
fn write_str(&mut self, s: &str) -> Result
Writes a slice of bytes into this writer, returning whether the write succeeded. Read more
fn write_char(&mut self, c: char) -> Result<(), Error>1.1.0
Writes a char into this writer, returning whether the write succeeded. Read more
fn write_fmt(&mut self, args: Arguments) -> Result<(), Error>
Glue for usage of the write! macro with implementors of this trait. Read more