Struct widgetry::Color[][src]

pub struct Color {
    pub r: f32,
    pub g: f32,
    pub b: f32,
    pub a: f32,
}

Fields

r: f32g: f32b: f32a: f32

Implementations

impl Color[src]

pub const CLEAR: Color[src]

pub const BLACK: Color[src]

pub const WHITE: Color[src]

pub const RED: Color[src]

pub const GREEN: Color[src]

pub const BLUE: Color[src]

pub const CYAN: Color[src]

pub const YELLOW: Color[src]

pub const PURPLE: Color[src]

pub const PINK: Color[src]

pub const ORANGE: Color[src]

pub fn rgb(r: usize, g: usize, b: usize) -> Color[src]

pub const fn rgb_f(r: f32, g: f32, b: f32) -> Color[src]

pub fn rgba(r: usize, g: usize, b: usize, a: f32) -> Color[src]

pub const fn rgba_f(r: f32, g: f32, b: f32, a: f32) -> Color[src]

pub const fn grey(f: f32) -> Color[src]

pub const fn alpha(&self, a: f32) -> Color[src]

pub fn hex(raw: &str) -> Color[src]

pub fn as_hex(&self) -> String[src]

pub fn lerp(self, other: Color, pct: f64) -> Color[src]

pub fn shade(self, black_ratio: f64) -> Color[src]

pub fn tint(self, white_ratio: f64) -> Color[src]

pub fn dull(self, ratio: f64) -> Color[src]

Trait Implementations

impl Clone for Color[src]

impl Copy for Color[src]

impl Debug for Color[src]

impl<'de> Deserialize<'de> for Color[src]

impl Display for Color[src]

impl From<Color> for Fill[src]

impl From<Color> for RewriteColor[src]

impl PartialEq<Color> for Color[src]

impl Serialize for Color[src]

impl StructuralPartialEq for Color[src]

Auto Trait Implementations

impl RefUnwindSafe for Color

impl Send for Color

impl Sync for Color

impl Unpin for Color

impl UnwindSafe for Color

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Any + Send + Sync

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.