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

pub struct StdoutLock<'a> { /* fields omitted */ }

A locked reference to the Stdout handle.

This handle implements the Write trait, and is constructed via the Stdout::lock method.

Trait Implementations

impl<'a> Write for StdoutLock<'a>
[src]

fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
[src]

Attempts to write an entire buffer into this writer. Read more

fn write_fmt(&mut self, fmt: Arguments) -> Result<(), Error>
[src]

Writes a formatted string into this writer, returning any error encountered. Read more

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

impl<'a> Debug for StdoutLock<'a>
1.16.0
[src]

Auto Trait Implementations

impl<'a> !Send for StdoutLock<'a>

impl<'a> Sync for StdoutLock<'a>

Blanket Implementations

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

impl<T> From for 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> Any for T where
    T: 'static + ?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> BorrowMut for T where
    T: ?Sized
[src]