Trait termion::color::Color[][src]

pub trait Color: Debug {
    fn write_fg(&self, f: &mut Formatter<'_>) -> Result;
fn write_bg(&self, f: &mut Formatter<'_>) -> Result; }
Expand description

A terminal color.

Required methods

Write the foreground version of this color.

Write the background version of this color.

Trait Implementations

Write the foreground version of this color.

Write the background version of this color.

Implementors