pub trait ToLab {
    type WhitePoint: WhitePoint;

    fn to_lab<T: Channel>(&self) -> Lab<T, Self::WhitePoint>;
}

Required Associated Types

Required Methods

Implementors