[][src]Struct termcolor::Buffer

pub struct Buffer(_);

Write colored text to memory.

Buffer is a platform independent abstraction for printing colored text to an in memory buffer. When the buffer is printed using a BufferWriter, the color information will be applied to the output device (a tty on Unix and a console on Windows).

A Buffer is typically created by calling the BufferWriter.buffer method, which will take color preferences and the environment into account. However, buffers can also be manually created using no_color, ansi or console (on Windows).

Methods

impl Buffer[src]

Important traits for Buffer
pub fn no_color() -> Buffer[src]

Create a buffer that drops all color information.

Important traits for Buffer
pub fn ansi() -> Buffer[src]

Create a buffer that uses ANSI escape sequences.

pub fn is_empty(&self) -> bool[src]

Returns true if and only if this buffer is empty.

pub fn len(&self) -> usize[src]

Returns the length of this buffer in bytes.

pub fn clear(&mut self)[src]

Clears this buffer.

pub fn into_inner(self) -> Vec<u8>[src]

Consume this buffer and return the underlying raw data.

On Windows, this unrecoverably drops all color information associated with the buffer.

pub fn as_slice(&self) -> &[u8][src]

Return the underlying data of the buffer.

pub fn as_mut_slice(&mut self) -> &mut [u8][src]

Return the underlying data of the buffer as a mutable slice.

Trait Implementations

impl WriteColor for Buffer[src]

impl Write for Buffer[src]

fn write_vectored(&mut self, bufs: &[IoSlice]) -> Result<usize, Error>1.36.0[src]

Like write, except that it writes from a slice of buffers. Read more

fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>1.0.0[src]

Attempts to write an entire buffer into this writer. Read more

fn write_fmt(&mut self, fmt: Arguments) -> Result<(), Error>1.0.0[src]

Writes a formatted string into this writer, returning any error encountered. Read more

fn by_ref(&mut self) -> &mut Self1.0.0[src]

Creates a "by reference" adaptor for this instance of Write. Read more

Auto Trait Implementations

impl Unpin for Buffer

impl Sync for Buffer

impl Send for Buffer

impl UnwindSafe for Buffer

impl RefUnwindSafe for Buffer

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]