Enum term_painter::Color [] [src]

pub enum Color {
    NotSet,
    Black,
    Red,
    Green,
    Yellow,
    Blue,
    Magenta,
    Cyan,
    White,
    BrightBlack,
    BrightRed,
    BrightGreen,
    BrightYellow,
    BrightBlue,
    BrightMagenta,
    BrightCyan,
    BrightWhite,
}

Lists all possible Colors. It implements ToStyle so it's possible to call ToStyle's methods directly on a Color variant like:

println!("{}", Color::Red.bold().paint("Red and bold"));

Note: Using Color::NotSet will not reset the color to the default terminal color.

Variants

NotSet
Black
Red
Green
Yellow
Blue
Magenta
Cyan
White
BrightBlack
BrightRed
BrightGreen
BrightYellow
BrightBlue
BrightMagenta
BrightCyan
BrightWhite

Trait Implementations

impl Default for Color

fn default() -> Self

impl ToStyle for Color

fn to_style(self) -> Style

fn fg(self, c: Color) -> Style

fn bg(self, c: Color) -> Style

fn bold(self) -> Style

fn dim(self) -> Style

fn underline(self) -> Style

fn not_underline(self) -> Style

fn reverse(self) -> Style

fn secure(self) -> Style

fn paint<T>(&self, obj: T) -> Painted<T> where Self: Clone

fn with<F, R>(&self, f: F) -> R where F: FnOnce() -> R, Self: Clone

Derived Implementations

impl Eq for Color

impl PartialEq for Color

fn eq(&self, __arg_0: &Color) -> bool

fn ne(&self, __arg_0: &Color) -> bool

impl Clone for Color

fn clone(&self) -> Color

fn clone_from(&mut self, source: &Self)

impl Copy for Color

impl Debug for Color

fn fmt(&self, __arg_0: &mut Formatter) -> Result