pub trait LCDColorFmt<'t> {
type Display: 't + Debug + Display;
// Required method
fn display(&'t self) -> Self::Display;
}pub trait LCDColorFmt<'t> {
type Display: 't + Debug + Display;
// Required method
fn display(&'t self) -> Self::Display;
}