[][src]Struct matrix_rhal::Rgbw

pub struct Rgbw {
    pub r: u8,
    pub g: u8,
    pub b: u8,
    pub w: u8,
}

Colors that represent a single LED.

Fields

r: u8g: u8b: u8w: u8

Methods

impl Rgbw[src]

pub fn new(r: u8, g: u8, b: u8, w: u8) -> Rgbw[src]

Shorthand way to create an RGBW instance.

pub fn black() -> Self[src]

An RGBW instance with all values at 0.

pub fn white() -> Self[src]

An RGBW instance with all values maxed out.

Trait Implementations

impl Clone for Rgbw[src]

impl Copy for Rgbw[src]

impl Debug for Rgbw[src]

Auto Trait Implementations

impl RefUnwindSafe for Rgbw

impl Send for Rgbw

impl Sync for Rgbw

impl Unpin for Rgbw

impl UnwindSafe for Rgbw

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.