Function std::io::stderr1.0.0 [] [src]

Important traits for Stderr
pub fn stderr() -> Stderr

Constructs a new handle to the standard error of the current process.

This handle is not buffered.

Examples

Using implicit synchronization:

use std::io::{self, Write};

fn main() -> io::Result<()> {
    io::stderr().write(b"hello world")?;

    Ok(())
}Run

Using explicit synchronization:

use std::io::{self, Write};

fn main() -> io::Result<()> {
    let stderr = io::stderr();
    let mut handle = stderr.lock();

    handle.write(b"hello world")?;

    Ok(())
}Run