[][src]Struct twitchchat::RGB

pub struct RGB(pub u8, pub u8, pub u8);

A 24-bit triplet for hex colors. Defaults to White (0xFF,0xFF,0xFF)

Methods

impl RGB[src]

pub fn from_hex(input: &str) -> Self[src]

Tries to parse a string ('#FFFFFF' or 'FFFFFF') into the RGB, defaults if it can't

pub fn red(self) -> u8[src]

Returns the red field

pub fn green(self) -> u8[src]

Returns the green field

pub fn blue(self) -> u8[src]

Returns the blue field

Trait Implementations

impl Copy for RGB[src]

impl PartialEq<RGB> for RGB[src]

impl Default for RGB[src]

fn default() -> Self[src]

Default color of #FFFFFF (White)

impl<'_> From<&'_ str> for RGB[src]

fn from(s: &str) -> Self[src]

Tries to parse an RGB from the str, defaulting if invalid

impl From<String> for RGB[src]

fn from(s: String) -> Self[src]

Tries to parse an RGB from the String, defaulting if invalid

impl From<Twitch> for RGB[src]

fn from(color: Twitch) -> Self[src]

Tries to turn the TwitchColor color into an RGB

If the color is, somehow, unknown, it'll use RGB::default

impl From<RGB> for Twitch[src]

fn from(rgb: RGB) -> Self[src]

Tries to turn the RGB Color into a Twitch Color

Defaults to a Turbo(RGB(0xFF,0xFF,0xFF))

impl Clone for RGB[src]

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

Performs copy-assignment from source. Read more

impl Display for RGB[src]

fn fmt(&self, f: &mut Formatter) -> Result[src]

Formats the RGB as #RRGGBB (in hex)

impl Debug for RGB[src]

Auto Trait Implementations

impl Send for RGB

impl Sync for RGB

Blanket Implementations

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

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

type Owned = T

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T