Type Alias rgb::alt::BGR8

source ·
pub type BGR8 = BGR<u8>;
Expand description

8-bit BGR

Aliased Type§

struct BGR8 {
    pub b: u8,
    pub g: u8,
    pub r: u8,
}

Fields§

§b: u8

Blue first

§g: u8

Green

§r: u8

Red last