Trait SimpleColor

Source
pub trait SimpleColor {
    // Required method
    fn rgb(&self) -> (u8, u8, u8);
}
Expand description

Color without alpha channel

Required Methods§

Source

fn rgb(&self) -> (u8, u8, u8)

Implementors§