1.0.0[][src]Struct boolean_enums::lstd::io::Stderr

pub struct Stderr { /* fields omitted */ }

A handle to the standard error stream of a process.

For more information, see the io::stderr method.

Methods

impl Stderr
[src]

Important traits for StderrLock<'a>
pub fn lock(&self) -> StderrLock
[src]

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.

Examples

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

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

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

    Ok(())
}

Trait Implementations

impl Debug for Stderr
1.16.0
[src]

impl AsRawFd for Stderr
1.21.0
[src]

impl Write for Stderr
[src]

Important traits for &'a mut W
fn by_ref(&mut self) -> &mut Self
[src]

Creates a "by reference" adaptor for this instance of Write. Read more

Auto Trait Implementations

impl Send for Stderr

impl Sync for Stderr

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]