pub type RGB8 = Rgb<u8>;Expand description
8-bit RGB
The colorspace is technically undefined, but generally sRGB is assumed.
Aliased Type§
#[repr(C)]pub struct RGB8 {
pub r: u8,
pub g: u8,
pub b: u8,
}Fields§
§r: u8Red Component
g: u8Green Component
b: u8Blue Component