pub enum PickerMode {
Disabled,
Active,
Hovering,
}Expand description
Component picker mode
Variants§
Disabled
Picker is disabled
Active
Picker is active, waiting for user to click
Hovering
Picker is hovering over a component
Trait Implementations§
Source§impl Clone for PickerMode
impl Clone for PickerMode
Source§fn clone(&self) -> PickerMode
fn clone(&self) -> PickerMode
Returns a duplicate 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 PickerMode
impl Debug for PickerMode
Source§impl Default for PickerMode
impl Default for PickerMode
Source§fn default() -> PickerMode
fn default() -> PickerMode
Returns the “default value” for a type. Read more
Source§impl PartialEq for PickerMode
impl PartialEq for PickerMode
impl Copy for PickerMode
impl Eq for PickerMode
impl StructuralPartialEq for PickerMode
Auto Trait Implementations§
impl Freeze for PickerMode
impl RefUnwindSafe for PickerMode
impl Send for PickerMode
impl Sync for PickerMode
impl Unpin for PickerMode
impl UnsafeUnpin for PickerMode
impl UnwindSafe for PickerMode
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