pub fn stderr() -> Stderr
Constructs a new handle to the standard error of the current process.
This handle is not buffered.
Using implicit synchronization:
use std::io::{self, Write}; io::stderr().write(b"hello world")?;
Using explicit synchronization:
use std::io::{self, Write}; let stderr = io::stderr(); let mut handle = stderr.lock(); handle.write(b"hello world")?;
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/io/fn.stderr.html