pub enum ViewAction {
None,
FingerDown(FingerDownEvent),
FingerUp(FingerUpEvent),
FingerLongPress(FingerLongPressEvent),
FingerMove(FingerMoveEvent),
FingerHoverIn(FingerHoverEvent),
FingerHoverOut(FingerHoverEvent),
KeyDown(KeyEvent),
KeyUp(KeyEvent),
}Variants§
None
FingerDown(FingerDownEvent)
FingerUp(FingerUpEvent)
FingerLongPress(FingerLongPressEvent)
FingerMove(FingerMoveEvent)
FingerHoverIn(FingerHoverEvent)
FingerHoverOut(FingerHoverEvent)
KeyDown(KeyEvent)
KeyUp(KeyEvent)
Trait Implementations§
Source§impl ActionDefaultRef for ViewAction
impl ActionDefaultRef for ViewAction
fn default_ref() -> &'static Self
Source§impl Clone for ViewAction
impl Clone for ViewAction
Source§fn clone(&self) -> ViewAction
fn clone(&self) -> ViewAction
Returns a copy 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 ViewAction
impl Debug for ViewAction
Auto Trait Implementations§
impl Freeze for ViewAction
impl RefUnwindSafe for ViewAction
impl Send for ViewAction
impl Sync for ViewAction
impl Unpin for ViewAction
impl UnwindSafe for ViewAction
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