pub trait IntoLCDColor {
    // Required method
    fn into_color(self) -> usize;
}

Required Methods§

source

fn into_color(self) -> usize

Implementations on Foreign Types§

source§

impl IntoLCDColor for LCDSolidColor

source§

fn into_color(self) -> usize

source§

impl<'t> IntoLCDColor for &'t [u8; 16]where usize: 't,

source§

fn into_color(self) -> usize

Implementors§