[][src]Enum cursive::theme::BaseColor

pub enum BaseColor {
    Black,
    Red,
    Green,
    Yellow,
    Blue,
    Magenta,
    Cyan,
    White,
}

One of the 8 base colors.

Variants

Black

Black color

Color #0

Red

Red color

Color #1

Green

Green color

Color #2

Yellow

Yellow color (Red + Green)

Color #3

Blue

Blue color

Color #4

Magenta

Magenta color (Red + Blue)

Color #5

Cyan

Cyan color (Green + Blue)

Color #6

White

White color (Red + Green + Blue)

Color #7

Implementations

impl BaseColor[src]

pub fn dark(self) -> Color[src]

Returns the regular (dark) version of this base color.

pub fn light(self) -> Color[src]

Returns the light version of this base color.

Trait Implementations

impl Clone for BaseColor[src]

impl Copy for BaseColor[src]

impl Debug for BaseColor[src]

impl Eq for BaseColor[src]

impl From<BaseColor> for ColorStyle[src]

impl From<u8> for BaseColor[src]

impl Hash for BaseColor[src]

impl PartialEq<BaseColor> for BaseColor[src]

impl StructuralEq for BaseColor[src]

impl StructuralPartialEq for BaseColor[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Erased for T

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> With for T[src]