[][src]Enum ncursesw::BaseColor

#[repr(i16)]
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

Trait Implementations

impl Clone for BaseColor[src]

impl Copy for BaseColor[src]

impl Debug for BaseColor[src]

impl Eq for BaseColor[src]

impl FromStr for BaseColor[src]

type Err = NCurseswError

The associated error which can be returned from parsing.

fn from_str(color: &str) -> Result<Self, Self::Err>[src]

Parse a string to instance a base color.

Valid values are 'black', 'red', 'green', 'yellow', 'blue', 'magenta', 'cyan', 'white'

Example

use std::str::FromStr;

let red = BaseColor::from_str("red")?;
let green = BaseColor::from_str("green")?;
let blue = BaseColor::from_str("blue")?;

assert!(red == BaseColor::Red);
assert!(green == BaseColor::Green);
assert!(blue == BaseColor::Blue);

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> 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.