[][src]Enum hodgepodge::colors::ROYGBIV

pub enum ROYGBIV {
    Red,
    Orange,
    Yellow,
    Green,
    Blue,
    Indigo,
    Violet,
}

ROYGBIV colors, with hex codes as found here

Variants

Red

Red is the first color in ROYGBIV

Orange

Orange is the second color in ROYGBIV

Yellow

Yellow is the third color in ROYGBIV

Green

Green is the fourth color in ROYGBIV

Blue

Blue is the fifth color in ROYGBIV

Indigo

Indigo is the sixth color in ROYGBIV

Violet

Violet is the seventh color in ROYGBIV

Trait Implementations

impl Clone for ROYGBIV[src]

impl Copy for ROYGBIV[src]

impl Debug for ROYGBIV[src]

impl EnumCount for ROYGBIV[src]

impl IntoEnumIterator for ROYGBIV[src]

type Iterator = ROYGBIVIter

impl LowerHex for ROYGBIV[src]

Auto Trait Implementations

impl RefUnwindSafe for ROYGBIV

impl Send for ROYGBIV

impl Sync for ROYGBIV

impl Unpin for ROYGBIV

impl UnwindSafe for ROYGBIV

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.