Enum android_activity::input::MotionAction
source · #[non_exhaustive]#[repr(u32)]pub enum MotionAction {
Show 13 variants
Down = 0,
Up = 1,
Move = 2,
Cancel = 3,
Outside = 4,
PointerDown = 5,
PointerUp = 6,
HoverMove = 7,
Scroll = 8,
HoverEnter = 9,
HoverExit = 10,
ButtonPress = 11,
ButtonRelease = 12,
}
Expand description
A motion action.
See the NDK docs
§Android Extensible Enum
This is a runtime extensible enum and
should be handled similar to a #[non_exhaustive]
enum to maintain
forwards compatibility.
This implements Into<u32>
and From<u32>
for converting to/from Android
SDK integer values.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Down = 0
Up = 1
Move = 2
Cancel = 3
Outside = 4
PointerDown = 5
PointerUp = 6
HoverMove = 7
Scroll = 8
HoverEnter = 9
HoverExit = 10
ButtonPress = 11
ButtonRelease = 12
Trait Implementations§
source§impl Clone for MotionAction
impl Clone for MotionAction
source§fn clone(&self) -> MotionAction
fn clone(&self) -> MotionAction
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 MotionAction
impl Debug for MotionAction
source§impl From<MotionAction> for u32
impl From<MotionAction> for u32
source§fn from(enum_value: MotionAction) -> Self
fn from(enum_value: MotionAction) -> Self
Converts to this type from the input type.
source§impl From<u32> for MotionAction
impl From<u32> for MotionAction
source§impl FromPrimitive for MotionAction
impl FromPrimitive for MotionAction
source§impl PartialEq for MotionAction
impl PartialEq for MotionAction
source§fn eq(&self, other: &MotionAction) -> bool
fn eq(&self, other: &MotionAction) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for MotionAction
impl Eq for MotionAction
impl StructuralPartialEq for MotionAction
Auto Trait Implementations§
impl Freeze for MotionAction
impl RefUnwindSafe for MotionAction
impl Send for MotionAction
impl Sync for MotionAction
impl Unpin for MotionAction
impl UnwindSafe for MotionAction
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