pub enum Hit {
Show 18 variants
KeyFocus(KeyFocusEvent),
KeyFocusLost(KeyFocusEvent),
KeyDown(KeyEvent),
KeyUp(KeyEvent),
Trigger(TriggerHitEvent),
TextInput(TextInputEvent),
TextCopy(TextClipboardEvent),
TextCut(TextClipboardEvent),
FingerScroll(FingerScrollEvent),
FingerDown(FingerDownEvent),
FingerMove(FingerMoveEvent),
FingerHoverIn(FingerHoverEvent),
FingerHoverOver(FingerHoverEvent),
FingerHoverOut(FingerHoverEvent),
FingerUp(FingerUpEvent),
FingerLongPress(FingerLongPressEvent),
DesignerPick(DesignerPickEvent),
Nothing,
}
Variants§
KeyFocus(KeyFocusEvent)
KeyFocusLost(KeyFocusEvent)
KeyDown(KeyEvent)
KeyUp(KeyEvent)
Trigger(TriggerHitEvent)
TextInput(TextInputEvent)
TextCopy(TextClipboardEvent)
TextCut(TextClipboardEvent)
FingerScroll(FingerScrollEvent)
FingerDown(FingerDownEvent)
FingerMove(FingerMoveEvent)
FingerHoverIn(FingerHoverEvent)
FingerHoverOver(FingerHoverEvent)
FingerHoverOut(FingerHoverEvent)
FingerUp(FingerUpEvent)
FingerLongPress(FingerLongPressEvent)
DesignerPick(DesignerPickEvent)
Nothing
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Hit
impl !RefUnwindSafe for Hit
impl !Send for Hit
impl !Sync for Hit
impl Unpin for Hit
impl !UnwindSafe for Hit
Blanket Implementations§
Source§impl<T> ActionTrait for T
impl<T> ActionTrait for T
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