Struct std::io::Stderr
[−]
[src]
pub struct Stderr { // some fields omitted }
A handle to the standard error stream of a process.
For more information, see stderr
Methods
impl Stderr
fn lock(&self) -> StderrLock
Locks this handle to the standard error stream, returning a writable guard.
The lock is released when the returned lock goes out of scope. The
returned guard also implements the Write
trait for writing data.