pub trait LCDColorExt {
    // Required methods
    fn White() -> Self;
    fn Black() -> Self;
    fn Clear() -> Self;
    fn XOR() -> Self;
}

Required Methods§

source

fn White() -> Self

source

fn Black() -> Self

source

fn Clear() -> Self

source

fn XOR() -> Self

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl LCDColorExt for LCDSolidColor

source§

impl LCDColorExt for usize

source§

fn White() -> usize

source§

fn Black() -> usize

source§

fn Clear() -> usize

source§

fn XOR() -> usize

Implementors§