[][src]Enum hodgepodge::colors::CMYK

pub enum CMYK {
    Cyan,
    Magenta,
    Yellow,
    Black,
}

CMYK colors

Variants

Cyan

Cyan is the first CMYK channel

Magenta

Magneta is the second CMYK channel

Yellow

Yellow is the third CMYK channel

Black

Black is the fourth CMYK channel (also known as Key)

Trait Implementations

impl Clone for CMYK[src]

impl Copy for CMYK[src]

impl Debug for CMYK[src]

impl EnumCount for CMYK[src]

impl IntoEnumIterator for CMYK[src]

type Iterator = CMYKIter

impl LowerHex for CMYK[src]

Auto Trait Implementations

impl RefUnwindSafe for CMYK

impl Send for CMYK

impl Sync for CMYK

impl Unpin for CMYK

impl UnwindSafe for CMYK

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.