Trait color::ToHsv[][src]

pub trait ToHsv {
    type Standard: TransferFunction;
    fn to_hsv<U: Channel + NumCast + Num>(&self) -> Hsv<U, Self::Standard>;
}

Associated Types

type Standard: TransferFunction[src]

Loading content...

Required methods

fn to_hsv<U: Channel + NumCast + Num>(&self) -> Hsv<U, Self::Standard>[src]

Loading content...

Implementations on Foreign Types

impl ToHsv for u32[src]

type Standard = Srgb

impl ToHsv for u64[src]

type Standard = Srgb

Loading content...

Implementors

impl<T: Channel + NumCast + Num, S: TransferFunction> ToHsv for Hsv<T, S>[src]

type Standard = S

impl<T: Channel + NumCast + Num, S: TransferFunction> ToHsv for Luma<T, S>[src]

type Standard = S

impl<T: Channel, S: TransferFunction> ToHsv for Rgb<T, S>[src]

type Standard = S

Loading content...