Trait palette::rgb::RgbSpace[][src]

pub trait RgbSpace {
    type Primaries: Primaries;
    type WhitePoint: WhitePoint;
}

A set of primaries and a white point.

Associated Types

The primaries of the RGB color space.

The white point of the RGB color space.

Implementations on Foreign Types

impl<P: Primaries, W: WhitePoint> RgbSpace for (P, W)
[src]

Implementors