pub type RGB16 = Rgb<u16>;Expand description
16-bit RGB in machine’s native endian
Be careful to perform byte-swapping when reading from files.
Aliased Type§
#[repr(C)]pub struct RGB16 {
pub r: u16,
pub g: u16,
pub b: u16,
}Fields§
§r: u16Red Component
g: u16Green Component
b: u16Blue Component