Struct dxgcap::BGRA8 [] [src]

pub struct BGRA8 {
    pub b: u8,
    pub g: u8,
    pub r: u8,
    pub a: u8,
}

Color represented by additive channels: Blue (b), Green (g), Red (r), and Alpha (a).

Fields

b
g
r
a

Trait Implementations

Derived Implementations

impl Ord for BGRA8

fn cmp(&self, __arg_0: &BGRA8) -> Ordering

impl Eq for BGRA8

impl PartialEq for BGRA8

fn eq(&self, __arg_0: &BGRA8) -> bool

fn ne(&self, __arg_0: &BGRA8) -> bool

impl PartialOrd for BGRA8

fn partial_cmp(&self, __arg_0: &BGRA8) -> Option<Ordering>

fn lt(&self, __arg_0: &BGRA8) -> bool

fn le(&self, __arg_0: &BGRA8) -> bool

fn gt(&self, __arg_0: &BGRA8) -> bool

fn ge(&self, __arg_0: &BGRA8) -> bool

impl Debug for BGRA8

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl Clone for BGRA8

fn clone(&self) -> BGRA8

fn clone_from(&mut self, source: &Self)

impl Copy for BGRA8