[][src]Struct pizarra::color::Color

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

Fields

r: f64g: f64b: f64a: f64

Implementations

impl Color[src]

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

Creates a color from its integer rgb codes

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

Creates a color from its integer rgba codes

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

Creates an opaque color from rgb

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

Creates a color from rgba values

pub fn green() -> Color[src]

pub fn red() -> Color[src]

pub fn blue() -> Color[src]

pub fn white() -> Color[src]

pub fn black() -> Color[src]

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

Trait Implementations

impl Clone for Color[src]

impl Copy for Color[src]

impl Debug for Color[src]

impl Default for Color[src]

impl Display for Color[src]

impl FromStr for Color[src]

type Err = Error

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.