pub trait ToRgb {
    type Standard: TransferFunction;

    fn to_rgb<U: Channel>(&self) -> Rgb<U, Self::Standard>;
}

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors