Enum trivial_colours::Colour [] [src]

#[repr(usize)]
pub enum Colour { Black, Red, Green, Yellow, Blue, Magenta, Cyan, White, }

The supported foreground colours.

Use them with Display to engage setting colour.

Note: take extreme care, as each and every call to Display::fmt() on this enum might change the terminal's foreground colour on some platforms.

Examples

println!("{}C{}M{}Y{}K", Colour::Cyan, Colour::Magenta, Colour::Yellow, Colour::Black);

Variants

Trait Implementations

impl Display for Colour
[src]

Formats the value using the given formatter. Read more

impl Copy for Colour
[src]

impl Clone for Colour
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Hash for Colour
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl Eq for Colour
[src]

impl PartialEq for Colour
[src]

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

This method tests for !=.

impl Ord for Colour
[src]

This method returns an Ordering between self and other. Read more

impl PartialOrd for Colour
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Debug for Colour
[src]

Formats the value using the given formatter.