Trait color::ToLab[][src]

pub trait ToLab {
    type WhitePoint: WhitePoint;
    fn to_lab<T: Channel>(&self) -> Lab<T, Self::WhitePoint>;
}

Associated Types

type WhitePoint: WhitePoint[src]

Loading content...

Required methods

fn to_lab<T: Channel>(&self) -> Lab<T, Self::WhitePoint>[src]

Loading content...

Implementors

impl<T: Channel + Float + NumCast, Wp: WhitePoint> ToLab for Xyz<T, Wp>[src]

type WhitePoint = Wp

Loading content...