pub struct StandardStream { /* private fields */ }Expand description
A standard stream for writing to stdout or stderr.
This satisfies both io::Write and WriteColor, and buffers writes
until either flush is called or the buffer is full.
Implementations§
Source§impl StandardStream
impl StandardStream
Sourcepub fn stdout(choice: ColorChoice) -> StandardStream ⓘ
pub fn stdout(choice: ColorChoice) -> StandardStream ⓘ
Create a new StandardStream with the given color preferences that
writes to standard output.
If coloring is desired, ANSI escape sequences are used.
Sourcepub fn stderr(choice: ColorChoice) -> StandardStream ⓘ
pub fn stderr(choice: ColorChoice) -> StandardStream ⓘ
Create a new StandardStream with the given color preferences that
writes to standard error.
If coloring is desired, ANSI escape sequences are used.
Sourcepub fn lock(&self) -> StandardStreamLock<'_> ⓘ
pub fn lock(&self) -> StandardStreamLock<'_> ⓘ
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§
Source§impl Debug for StandardStream
impl Debug for StandardStream
Source§impl Write for StandardStream
impl Write for StandardStream
Source§fn write(&mut self, b: &[u8]) -> Result<usize>
fn write(&mut self, b: &[u8]) -> Result<usize>
Writes a buffer into this writer, returning how many bytes were written. Read more
Source§fn flush(&mut self) -> Result<()>
fn flush(&mut self) -> Result<()>
Flushes this output stream, ensuring that all intermediately buffered
contents reach their destination. Read more
Source§fn is_write_vectored(&self) -> bool
fn is_write_vectored(&self) -> bool
🔬This is a nightly-only experimental API. (
can_vector)1.0.0 · Source§fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
Attempts to write an entire buffer into this writer. Read more
Source§fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>
fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>
🔬This is a nightly-only experimental API. (
write_all_vectored)Attempts to write multiple buffers into this writer. Read more
Source§impl WriteColor for StandardStream
impl WriteColor for StandardStream
Source§fn supports_color(&self) -> bool
fn supports_color(&self) -> bool
Returns true if and only if the underlying writer supports colors.
Source§fn supports_hyperlinks(&self) -> bool
fn supports_hyperlinks(&self) -> bool
Returns true if and only if the underlying writer supports hyperlinks. Read more
Source§fn set_color(&mut self, spec: &ColorSpec) -> Result<()>
fn set_color(&mut self, spec: &ColorSpec) -> Result<()>
Set the color settings of the writer. Read more
Source§fn set_hyperlink(&mut self, link: &HyperlinkSpec<'_>) -> Result<()>
fn set_hyperlink(&mut self, link: &HyperlinkSpec<'_>) -> Result<()>
Set the current hyperlink of the writer. Read more
Source§fn reset(&mut self) -> Result<()>
fn reset(&mut self) -> Result<()>
Reset the current color settings to their original settings. Read more
Source§fn is_synchronous(&self) -> bool
fn is_synchronous(&self) -> bool
Returns true if and only if the underlying writer must synchronously
interact with an end user’s device in order to control colors. By
default, this always returns
false. Read moreAuto Trait Implementations§
impl Freeze for StandardStream
impl RefUnwindSafe for StandardStream
impl Send for StandardStream
impl Sync for StandardStream
impl Unpin for StandardStream
impl UnwindSafe for StandardStream
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more