Enum imgui::ColorEditMode[][src]

pub enum ColorEditMode {
    RGB,
    HSV,
    HEX,
}

Color editor mode.

Variants

Edit as RGB(A).

Edit as HSV(A).

Edit as hex (e.g. #AABBCC(DD))

Trait Implementations

impl Copy for ColorEditMode
[src]

impl Clone for ColorEditMode
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ColorEditMode
[src]

Formats the value using the given formatter. Read more

impl PartialEq for ColorEditMode
[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 ColorEditMode
[src]

Auto Trait Implementations