Enum embedded_graphics_simulator::BinaryColorTheme[][src]

pub enum BinaryColorTheme {
    Default,
    Inverted,
    LcdWhite,
    LcdGreen,
    LcdBlue,
    OledWhite,
    OledBlue,
}

Color theme for binary displays

Variants

Default

A simple on/off, non-styled display with black background and white pixels

Inverted

Inverted colors.

LcdWhite

An on/off classic LCD-like display with white background

LcdGreen

An on/off classic LCD-like display with green background and dark grey pixels

LcdBlue

An on/off LCD-like display with light blue background and blue-white pixels

OledWhite

An on/off OLED-like display with a black background and white pixels

OledBlue

An on/off OLED-like display with a dark blue background and light blue pixels

Trait Implementations

impl Clone for BinaryColorTheme[src]

impl Copy for BinaryColorTheme[src]

impl Debug for BinaryColorTheme[src]

impl Eq for BinaryColorTheme[src]

impl PartialEq<BinaryColorTheme> for BinaryColorTheme[src]

impl StructuralEq for BinaryColorTheme[src]

impl StructuralPartialEq for BinaryColorTheme[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> Pointable for T

type Init = T

The type for initializers.

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.