[][src]Struct azul_css::ColorF

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

f32-based color, range 0.0 to 1.0 (similar to webrenders ColorF)

Fields

r: f32g: f32b: f32a: f32

Implementations

impl ColorF[src]

pub const WHITE: ColorF[src]

pub const BLACK: ColorF[src]

pub const TRANSPARENT: ColorF[src]

Trait Implementations

impl Clone for ColorF[src]

impl Copy for ColorF[src]

impl Debug for ColorF[src]

impl Default for ColorF[src]

impl Display for ColorF[src]

impl From<ColorF> for ColorU[src]

impl From<ColorU> for ColorF[src]

impl PartialEq<ColorF> for ColorF[src]

impl PartialOrd<ColorF> for ColorF[src]

impl StructuralPartialEq for ColorF[src]

Auto Trait Implementations

impl RefUnwindSafe for ColorF

impl Send for ColorF

impl Sync for ColorF

impl Unpin for ColorF

impl UnwindSafe for ColorF

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.