Enum imgui::EditableColor[][src]

pub enum EditableColor<'a> {
    Float3(&'a mut [f32; 3]),
    Float4(&'a mut [f32; 4]),
}
Expand description

Mutable reference to an editable color value.

Variants

Float3(&'a mut [f32; 3])

Color value with three float components (e.g. RGB).

Tuple Fields of Float3

0: &'a mut [f32; 3]
Float4(&'a mut [f32; 4])

Color value with four float components (e.g. RGBA).

Tuple Fields of Float4

0: &'a mut [f32; 4]

Trait Implementations

Formats the value using the given formatter. Read more

Performs the conversion.

Performs the conversion.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.