Trait rin::color::ToHsv[][src]

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

Associated Types

type Standard: TransferFunction[src]

Loading content...

Required methods

pub fn to_hsv<U>(&self) -> Hsv<U, Self::Standard> where
    U: Channel + NumCast + Num
[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, S> ToHsv for Hsv<T, S> where
    T: Channel + NumCast + Num,
    S: TransferFunction
[src]

type Standard = S

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

type Standard = S

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

type Standard = S

Loading content...