[][src]Struct csscolorparser::Color

pub struct Color { /* fields omitted */ }

The color

Implementations

impl Color[src]

pub fn from_rgb(r: f64, g: f64, b: f64) -> Color[src]

r, g, b in the range [0, 1]

pub fn from_rgba(r: f64, g: f64, b: f64, a: f64) -> Color[src]

r, g, b, a in the range [0, 1]

pub fn from_rgb_u8(r: u8, g: u8, b: u8) -> Color[src]

r, g, b in the range [0, 255]

pub fn from_rgba_u8(r: u8, g: u8, b: u8, a: u8) -> Color[src]

r, g, b, a in the range [0, 255]

pub fn from_hsv(h: f64, s: f64, v: f64) -> Color[src]

Hue (h) in the range [0, 360]. Saturation (s) and value (v) in the range [0, 1].

pub fn from_hsva(h: f64, s: f64, v: f64, a: f64) -> Color[src]

pub fn from_hsl(h: f64, s: f64, l: f64) -> Color[src]

Hue (h) in the range [0, 360]. Saturation (s) and lightness (l) in the range [0, 1].

pub fn from_hsla(h: f64, s: f64, l: f64, a: f64) -> Color[src]

pub fn from_hwb(h: f64, w: f64, b: f64) -> Color[src]

Hue (h) in the range [0, 360]. Whiteness (w) and blackness (b) in the range [0, 1].

pub fn from_hwba(h: f64, w: f64, b: f64, a: f64) -> Color[src]

pub fn from_html(s: &str) -> Result<Color, ParseError>[src]

pub fn rgba(&self) -> (f64, f64, f64, f64)[src]

Get red, green, blue, and alpha in the range [0, 1].

pub fn rgba_u8(&self) -> (u8, u8, u8, u8)[src]

Get red, green, blue, and alpha in the range [0, 255].

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

Get the hexadecimal color string.

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

Get the CSS rgb() format string.

pub fn interpolate_rgb(&self, other: &Color, t: f64) -> Color[src]

pub fn interpolate_lrgb(&self, other: &Color, t: f64) -> Color[src]

Trait Implementations

impl Clone for Color[src]

impl Debug for Color[src]

impl Display for Color[src]

impl FromStr for Color[src]

type Err = ParseError

The associated error which can be returned from parsing.

impl PartialEq<Color> for Color[src]

impl StructuralPartialEq for Color[src]

Auto Trait Implementations

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> 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.