pub enum WidgetInteraction {
None,
Hover,
Press,
Drag,
Click,
DoubleClick,
TripleClick,
Focus,
}Expand description
Widget interaction type
Variants§
Trait Implementations§
Source§impl Clone for WidgetInteraction
impl Clone for WidgetInteraction
Source§fn clone(&self) -> WidgetInteraction
fn clone(&self) -> WidgetInteraction
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 WidgetInteraction
impl Debug for WidgetInteraction
Source§impl Default for WidgetInteraction
impl Default for WidgetInteraction
Source§fn default() -> WidgetInteraction
fn default() -> WidgetInteraction
Returns the “default value” for a type. Read more
Source§impl PartialEq for WidgetInteraction
impl PartialEq for WidgetInteraction
impl Copy for WidgetInteraction
impl Eq for WidgetInteraction
impl StructuralPartialEq for WidgetInteraction
Auto Trait Implementations§
impl Freeze for WidgetInteraction
impl RefUnwindSafe for WidgetInteraction
impl Send for WidgetInteraction
impl Sync for WidgetInteraction
impl Unpin for WidgetInteraction
impl UnsafeUnpin for WidgetInteraction
impl UnwindSafe for WidgetInteraction
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