[][src]Struct tincture::Srgb

pub struct Srgb {
    pub r: f32,
    pub g: f32,
    pub b: f32,
}

An sRGB color.

Fields

r: f32

Red (0 to 1).

g: f32

Green (0 to 1).

b: f32

Blue (0 to 1).

Trait Implementations

impl Clone for Srgb[src]

impl ColorSpace for Srgb[src]

impl Copy for Srgb[src]

impl Debug for Srgb[src]

impl From<LinearRgb> for Srgb[src]

impl From<Srgb> for LinearRgb[src]

impl Hex for Srgb[src]

impl PartialEq<Srgb> for Srgb[src]

impl PartialOrd<Srgb> for Srgb[src]

impl StructuralPartialEq for Srgb[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, 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.