LCDColorConst

Trait LCDColorConst 

Source
pub trait LCDColorConst {
    const WHITE: Self;
    const BLACK: Self;
    const CLEAR: Self;
    const XOR: Self;
}

Required Associated Constants§

Source

const WHITE: Self

Source

const BLACK: Self

Source

const CLEAR: Self

Source

const XOR: Self

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl LCDColorConst for LCDSolidColor

Source§

const WHITE: Self

Source§

const BLACK: Self

Source§

const CLEAR: Self

Source§

const XOR: Self

Source§

impl LCDColorConst for LCDColor

Source§

const WHITE: Self = 1usize

Source§

const BLACK: Self = 0usize

Source§

const CLEAR: Self = 2usize

Source§

const XOR: Self = 3usize

Implementors§