[][src]Enum embedded_graphics_simulator::DisplayTheme

pub enum DisplayTheme {
    Default,
    LcdWhite,
    LcdGreen,
    LcdBlue,
    OledWhite,
    OledBlue,
    ColorOled,
}

Display theme to use

Variants

Default

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

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

ColorOled

An OLED-like display that supports 24 bit colour output

Methods

impl DisplayTheme[src]

pub fn pixel_color(&self, pixel: &SimPixelColor) -> Option<Color>[src]

Get the theme's pixel colour for a given pixel

For on/off displays, a pixel value of 0, 0, 0 will be off, whilst any other value will be interpreted as an "on" pixel.

pub fn background_color(&self) -> Color[src]

Get the background colour for the current theme

Trait Implementations

impl Clone for DisplayTheme[src]

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

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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