Enum ansi_term::Colour [] [src]

pub enum Colour {
    Black,
    Red,
    Green,
    Yellow,
    Blue,
    Purple,
    Cyan,
    White,
    Fixed(u8),
}

A colour is one specific type of ANSI escape code, and can refer to either the foreground or background colour.

These use the standard numeric sequences. See http://invisible-island.net/xterm/ctlseqs/ctlseqs.html

Variants

BlackRedGreenYellowBluePurpleCyanWhiteFixed(u8)

Methods

impl Colour
[src]

fn normal(self) -> Style

Return a Style with the foreground colour set to this colour.

fn paint(self, input: &str) -> ANSIString

Paints the given text with this colour, returning an ANSI string. This is a short-cut so you don't have to use Blue.normal() just to get blue text.

fn underline(self) -> Style

Returns a Style with the underline property set.

fn bold(self) -> Style

Returns a Style with the bold property set.

fn on(self, background: Colour) -> Style

Returns a Style with the background colour property set.

Trait Implementations

impl Debug for Colour
[src]

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

Formats the value using the given formatter.

impl Copy for Colour
[src]

impl Clone for Colour
[src]

fn clone(&self) -> Colour

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more

impl PartialEq for Colour
[src]

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

This method tests for self and other values to be equal, and is used by ==. Read more

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

This method tests for !=.