Trait rin::color::ToLab[][src]

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

Associated Types

type WhitePoint: WhitePoint[src]

Loading content...

Required methods

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

Loading content...

Implementors

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

type WhitePoint = Wp

Loading content...