Enum implot::Colormap[][src]

#[repr(u32)]pub enum Colormap {
    Standard,
    Deep,
    Dark,
    Pastel,
    Paired,
    Viridis,
    Plasma,
    Hot,
    Cool,
    Pink,
    Jet,
}

Colormap choice. Documentation copied from implot.h for convenience.

Variants

Standard

ImPlot default colormap (n=10). Called "Standard" here because Default is reserved.

Deep

a.k.a. seaborn deep (n=10)

Dark

a.k.a. matplotlib "Set1" (n=9)

Pastel

a.k.a. matplotlib "Pastel1" (n=9)

Paired

a.k.a. matplotlib "Paired" (n=12)

Viridis

a.k.a. matplotlib "viridis" (n=11)

Plasma

a.k.a. matplotlib "plasma" (n=11)

Hot

a.k.a. matplotlib/MATLAB "hot" (n=11)

Cool

a.k.a. matplotlib/MATLAB "cool" (n=11)

Pink

a.k.a. matplotlib/MATLAB "pink" (n=11)

Jet

a.k.a. MATLAB "jet" (n=11)

Trait Implementations

impl Clone for Colormap[src]

impl Copy for Colormap[src]

impl Debug for Colormap[src]

Auto Trait Implementations

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.