Enum imgui::ColorPickerMode[][src]

pub enum ColorPickerMode {
    HueBar,
    HueWheel,
}

Color picker hue/saturation/value editor mode.

Variants

Use a bar for hue, rectangle for saturation/value.

Use a wheel for hue, triangle for saturation/value.

Trait Implementations

impl Copy for ColorPickerMode
[src]

impl Clone for ColorPickerMode
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ColorPickerMode
[src]

Formats the value using the given formatter. Read more

impl PartialEq for ColorPickerMode
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for ColorPickerMode
[src]

Auto Trait Implementations