[][src]Struct colours::Hsv

pub struct Hsv<T> {
    pub hue: T,
    pub saturation: T,
    pub value: T,
}

Generic HSV color

Fields

hue: Tsaturation: Tvalue: T

Methods

impl<T> Hsv<T>[src]

pub fn new(hue: T, saturation: T, value: T) -> Self[src]

Trait Implementations

impl<T: Clone> Clone for Hsv<T>[src]

impl<T: Copy> Copy for Hsv<T>[src]

impl<T: Debug> Debug for Hsv<T>[src]

impl<T: IsColorChannel> Default for Hsv<T>[src]

impl<T: Eq> Eq for Hsv<T>[src]

impl From<Hsl<f32>> for Hsv<f32>[src]

impl<T: IsColorChannel> From<Hsv<T>> for Hsva<T>[src]

impl From<Hsv<f32>> for Rgb<f32>[src]

impl From<Hsv<f32>> for Hsl<f32>[src]

impl From<Hsv<f32>> for Hsv<u8>[src]

impl From<Hsv<u8>> for Hsv<f32>[src]

impl<T: IsColorChannel> From<Hsva<T>> for Hsv<T>[src]

impl From<Rgb<f32>> for Hsv<f32>[src]

impl<T: IsColorChannel> HasntAlpha for Hsv<T>[src]

type Alphaful = Hsva<T>

The color of same kind but with alpha component

impl<T: IsColorChannel> IsColor for Hsv<T>[src]

type Channel = T

impl<T: PartialEq> PartialEq<Hsv<T>> for Hsv<T>[src]

impl<T> StructuralEq for Hsv<T>[src]

impl<T> StructuralPartialEq for Hsv<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Hsv<T> where
    T: RefUnwindSafe

impl<T> Send for Hsv<T> where
    T: Send

impl<T> Sync for Hsv<T> where
    T: Sync

impl<T> Unpin for Hsv<T> where
    T: Unpin

impl<T> UnwindSafe for Hsv<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.