Struct termcolor::Ansi
[−]
[src]
pub struct Ansi<W>(_);
Satisfies WriteColor using standard ANSI escape sequences.
Methods
impl<W: Write> Ansi<W>[src]
ⓘImportant traits for Ansi<W>pub fn new(wtr: W) -> Ansi<W>[src]
Create a new writer that satisfies WriteColor using standard ANSI
escape sequences.
pub fn into_inner(self) -> W[src]
Consume this Ansi value and return the inner writer.
pub fn get_ref(&self) -> &W[src]
Return a reference to the inner writer.
pub fn get_mut(&mut self) -> &mut W[src]
Return a mutable reference to the inner writer.
Trait Implementations
impl<W: Write> Write for Ansi<W>[src]
fn write(&mut self, buf: &[u8]) -> Result<usize>[src]
Write a buffer into this object, returning how many bytes were written. Read more
fn flush(&mut self) -> Result<()>[src]
Flush this output stream, ensuring that all intermediately buffered contents reach their destination. Read more
fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>1.0.0[src]
Attempts to write an entire buffer into this write. 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
impl<W: Write> WriteColor for Ansi<W>[src]
fn supports_color(&self) -> bool[src]
Returns true if and only if the underlying writer supports colors.
fn set_color(&mut self, spec: &ColorSpec) -> Result<()>[src]
Set the color settings of the writer. Read more
fn reset(&mut self) -> Result<()>[src]
Reset the current color settings to their original settings. Read more