Enum arcdps_imgui::EditableColor
source · 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).
Float4(&'a mut [f32; 4])
Color value with four float components (e.g. RGBA).
Trait Implementations§
source§impl<'a> Debug for EditableColor<'a>
impl<'a> Debug for EditableColor<'a>
Auto Trait Implementations§
impl<'a> Freeze for EditableColor<'a>
impl<'a> RefUnwindSafe for EditableColor<'a>
impl<'a> Send for EditableColor<'a>
impl<'a> Sync for EditableColor<'a>
impl<'a> Unpin for EditableColor<'a>
impl<'a> !UnwindSafe for EditableColor<'a>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more