Struct termcolor::StandardStream [−][src]
Satisfies io::Write
and WriteColor
, and supports optional coloring
to either of the standard output streams, stdout and stderr.
Implementations
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 WriteColor for StandardStream
[src][+]
Auto Trait Implementations
impl RefUnwindSafe for StandardStream
impl Send for StandardStream
impl Sync for StandardStream
impl Unpin for StandardStream
impl UnwindSafe for StandardStream
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,