pub trait LumaStandard {
    type WhitePoint: WhitePoint;
    type TransferFn: TransferFn;
}
Expand description

A white point and a transfer function.

Required Associated Types§

source

type WhitePoint: WhitePoint

The white point of the color space.

source

type TransferFn: TransferFn

The transfer function for the luminance component.

Implementations on Foreign Types§

source§

impl<Wp: WhitePoint, T: TransferFn> LumaStandard for (Wp, T)

§

type WhitePoint = Wp

§

type TransferFn = T

Implementors§