Struct termcolor::StandardStream [−][src]
pub struct StandardStream { /* fields omitted */ }
Satisfies io::Write
and WriteColor
, and supports optional coloring
to either of the standard output streams, stdout and stderr.
Implementations
impl StandardStream
[src]
impl StandardStream
[src]pub fn stdout(choice: ColorChoice) -> StandardStreamⓘNotable traits for StandardStream
impl Write for StandardStream
[src][−]
Notable traits for StandardStream
impl Write for StandardStream
Create a new StandardStream
with the given color preferences that
writes to standard output.
On Windows, if coloring is desired and a Windows console could not be found, then ANSI escape sequences are used instead.
The specific color/style settings can be configured when writing via
the WriteColor
trait.
pub fn stderr(choice: ColorChoice) -> StandardStreamⓘNotable traits for StandardStream
impl Write for StandardStream
[src][−]
Notable traits for StandardStream
impl Write for StandardStream
Create a new StandardStream
with the given color preferences that
writes to standard error.
On Windows, if coloring is desired and a Windows console could not be found, then ANSI escape sequences are used instead.
The specific color/style settings can be configured when writing via
the WriteColor
trait.
pub fn lock(&self) -> StandardStreamLock<'_>ⓘNotable traits for StandardStreamLock<'a>
impl<'a> Write for StandardStreamLock<'a>
[src][−]
Notable traits for StandardStreamLock<'a>
impl<'a> Write for StandardStreamLock<'a>
Lock the underlying writer.
The lock guard returned also satisfies io::Write
and
WriteColor
.
This method is not reentrant. It may panic if lock
is called
while a StandardStreamLock
is still alive.
Trait Implementations
impl Write for StandardStream
[src]
impl Write for StandardStream
[src]fn write(&mut self, b: &[u8]) -> Result<usize>
[src][−]
fn flush(&mut self) -> Result<()>
[src][−]
pub fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> Result<usize, Error>
1.36.0[src][−]
pub fn is_write_vectored(&self) -> bool
[src][−]
pub fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
1.0.0[src][−]
pub fn write_all_vectored(
&mut self,
bufs: &mut [IoSlice<'_>]
) -> Result<(), Error>
[src][−]
&mut self,
bufs: &mut [IoSlice<'_>]
) -> Result<(), Error>