[][src]Enum imgui::EditableColor

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

Mutable reference to an editable color value.

Variants

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

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

Float4(&'p mut [f32; 4])

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

Trait Implementations

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

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

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

Auto Trait Implementations

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

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

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.