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

pub trait Color {
    fn write_fg(&self, f: &mut Formatter) -> Result;
    fn write_bg(&self, f: &mut Formatter) -> Result;
}

A terminal color.

Required Methods

fn write_fg(&self, f: &mut Formatter) -> Result

Write the foreground version of this color.

fn write_bg(&self, f: &mut Formatter) -> Result

Write the background version of this color.

Implementors