Trait palette::rgb::RgbStandard[][src]

pub trait RgbStandard {
    type Space: RgbSpace;
    type TransferFn: TransferFn;
}

An RGB space and a transfer function.

Associated Types

The RGB color space.

The transfer function for the color components.

Implementations on Foreign Types

impl<S: RgbSpace, T: TransferFn> RgbStandard for (S, T)
[src]

impl<P: Primaries, W: WhitePoint, T: TransferFn> RgbStandard for (P, W, T)
[src]

Implementors