pub trait ToHsv {
    type Standard: TransferFunction;

    fn to_hsv<U: Channel + NumCast + Num>(&self) -> Hsv<U, Self::Standard>;
}

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors