Enum aflak_imgui::EditableColor[][src]

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

Mutable reference to an editable color value.

Variants

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

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

Trait Implementations

impl<'p> Debug for EditableColor<'p>
[src]

Formats the value using the given formatter. Read more

impl<'p> From<&'p mut [f32; 3]> for EditableColor<'p>
[src]

Performs the conversion.

impl<'p> From<&'p mut [f32; 4]> for EditableColor<'p>
[src]

Performs the conversion.

Auto Trait Implementations

impl<'p> Send for EditableColor<'p>

impl<'p> Sync for EditableColor<'p>