Struct log4rs::encode::writer::ConsoleWriter
[−]
[src]
pub struct ConsoleWriter(_);
An encode::Write
r that outputs to a console.
Methods
impl ConsoleWriter
[src]
fn stdout() -> Option<ConsoleWriter>
Returns a new ConsoleWriter
that will write to standard out.
Returns None
if standard out is not a console buffer on Windows,
and if it is not a tty on Unix.
fn lock<'a>(&'a self) -> ConsoleWriterLock<'a>
Locks the console, preventing other threads from writing concurrently.
Trait Implementations
impl Write for ConsoleWriter
[src]
fn write(&mut self, buf: &[u8]) -> Result<usize>
Write a buffer into this object, returning how many bytes were written. Read more
fn flush(&mut self) -> Result<()>
Flush this output stream, ensuring that all intermediately buffered contents reach their destination. Read more
fn write_all(&mut self, buf: &[u8]) -> Result<()>
Attempts to write an entire buffer into this write. Read more
fn write_fmt(&mut self, fmt: Arguments) -> Result<()>
Writes a formatted string into this writer, returning any error encountered. Read more
fn by_ref(&mut self) -> &mut Self
1.0.0
Creates a "by reference" adaptor for this instance of Write
. Read more