pub enum InputEventClass {
Interactive,
NonInteractive,
}Expand description
Input event class for drop policy.
Variants§
Interactive
Keystrokes/paste/focus transitions (must not drop).
NonInteractive
Mouse move/drag and other coalescible signals.
Trait Implementations§
Source§impl Clone for InputEventClass
impl Clone for InputEventClass
Source§fn clone(&self) -> InputEventClass
fn clone(&self) -> InputEventClass
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 InputEventClass
impl Debug for InputEventClass
Source§impl PartialEq for InputEventClass
impl PartialEq for InputEventClass
impl Copy for InputEventClass
impl Eq for InputEventClass
impl StructuralPartialEq for InputEventClass
Auto Trait Implementations§
impl Freeze for InputEventClass
impl RefUnwindSafe for InputEventClass
impl Send for InputEventClass
impl Sync for InputEventClass
impl Unpin for InputEventClass
impl UnwindSafe for InputEventClass
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