pub type BGRA16 = Bgra<u16>;Expand description
16-bit BGR in machine’s native endian
Aliased Type§
#[repr(C)]pub struct BGRA16 {
    pub b: u16,
    pub g: u16,
    pub r: u16,
    pub a: u16,
}Fields§
§b: u16Blue Component
g: u16Green Component
r: u16Red Component
a: u16Alpha Component