Enum arcdps_imgui::ColorPickerMode
source · pub enum ColorPickerMode {
HueBar,
HueWheel,
}
Expand description
Color picker hue/saturation/value editor mode
Variants§
HueBar
Use a bar for hue, rectangle for saturation/value.
HueWheel
Use a wheel for hue, triangle for saturation/value.
Trait Implementations§
source§impl Clone for ColorPickerMode
impl Clone for ColorPickerMode
source§fn clone(&self) -> ColorPickerMode
fn clone(&self) -> ColorPickerMode
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ColorPickerMode
impl Debug for ColorPickerMode
source§impl PartialEq for ColorPickerMode
impl PartialEq for ColorPickerMode
source§fn eq(&self, other: &ColorPickerMode) -> bool
fn eq(&self, other: &ColorPickerMode) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for ColorPickerMode
impl Eq for ColorPickerMode
impl StructuralPartialEq for ColorPickerMode
Auto Trait Implementations§
impl Freeze for ColorPickerMode
impl RefUnwindSafe for ColorPickerMode
impl Send for ColorPickerMode
impl Sync for ColorPickerMode
impl Unpin for ColorPickerMode
impl UnwindSafe for ColorPickerMode
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