[−][src]Struct csscolorparser::Color
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.
pub fn from_str(s: &str) -> Result<Self, Self::Err>[src]
impl PartialEq<Color> for Color[src]
impl StructuralPartialEq for Color[src]
Auto Trait Implementations
impl RefUnwindSafe for Color[src]
impl Send for Color[src]
impl Sync for Color[src]
impl Unpin for Color[src]
impl UnwindSafe for Color[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,