[][src]Struct thorium::color::ARGB32

#[repr(C)]
pub struct ARGB32 { pub b: u8, pub g: u8, pub r: u8, pub a: u8, }

Struct for easy manipulation of ARGB32 color data.

Fields

b: u8g: u8r: u8a: u8

Methods

impl ARGB32[src]

pub const fn new(a: u8, r: u8, g: u8, b: u8) -> Self[src]

Constructs the color.

pub const fn from_rgb24(rgb: u32) -> Self[src]

Constructs a value from 0xRRGGBB, assumes A=0xFF

Trait Implementations

impl Eq for ARGB32[src]

impl PartialEq<ARGB32> for ARGB32[src]

impl Clone for ARGB32[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Copy for ARGB32[src]

impl From<ARGB32> for u32[src]

impl From<u32> for ARGB32[src]

impl Debug for ARGB32[src]

Auto Trait Implementations

impl Send for ARGB32

impl Sync for ARGB32

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]