pub type BGRA8 = Bgra<u8>;Expand description
8-bit BGRA
Aliased Type§
#[repr(C)]pub struct BGRA8 {
    pub b: u8,
    pub g: u8,
    pub r: u8,
    pub a: u8,
}Fields§
§b: u8Blue Component
g: u8Green Component
r: u8Red Component
a: u8Alpha Component