pub enum WidgetType {
Knob,
Slider,
Toggle,
Selector,
Dropdown,
Meter,
XYPad,
}Expand description
Widget type for interaction state tracking.
Variants§
Knob
Slider
Toggle
Selector
Dropdown
Dropdown list - click to open a popup of all options.
Meter
XYPad
Trait Implementations§
Source§impl Clone for WidgetType
impl Clone for WidgetType
Source§fn clone(&self) -> WidgetType
fn clone(&self) -> WidgetType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 WidgetType
impl Debug for WidgetType
Source§impl PartialEq for WidgetType
impl PartialEq for WidgetType
Source§fn eq(&self, other: &WidgetType) -> bool
fn eq(&self, other: &WidgetType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for WidgetType
impl Eq for WidgetType
impl StructuralPartialEq for WidgetType
Auto Trait Implementations§
impl Freeze for WidgetType
impl RefUnwindSafe for WidgetType
impl Send for WidgetType
impl Sync for WidgetType
impl Unpin for WidgetType
impl UnsafeUnpin for WidgetType
impl UnwindSafe for WidgetType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.