[−][src]Struct termcolor::BufferWriter
Writes colored buffers to stdout or stderr.
Writable buffers can be obtained by calling buffer on a BufferWriter.
This writer works with terminals that support ANSI escape sequences or with a Windows console.
It is intended for a BufferWriter to be put in an Arc and written to
from multiple threads simultaneously.
Implementations
impl BufferWriter[src]
pub fn stdout(choice: ColorChoice) -> BufferWriter[src]
Create a new BufferWriter that writes to stdout with the given
color preferences.
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 to the buffers themselves.
pub fn stderr(choice: ColorChoice) -> BufferWriter[src]
Create a new BufferWriter that writes to stderr with the given
color preferences.
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 to the buffers themselves.
pub fn separator(&mut self, sep: Option<Vec<u8>>)[src]
If set, the separator given is printed between buffers. By default, no separator is printed.
The default value is None.
pub fn buffer(&self) -> Bufferⓘ[src]
Creates a new Buffer with the current color preferences.
A Buffer satisfies both io::Write and WriteColor. A Buffer can
be printed using the print method.
pub fn print(&self, buf: &Buffer) -> Result<()>[src]
Prints the contents of the given buffer.
It is safe to call this from multiple threads simultaneously. In particular, all buffers are written atomically. No interleaving will occur.
Auto Trait Implementations
impl RefUnwindSafe for BufferWriter
impl Send for BufferWriter
impl Sync for BufferWriter
impl Unpin for BufferWriter
impl UnwindSafe for BufferWriter
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,
pub fn borrow_mut(&mut self) -> &mut T[src]
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>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,