Enum android_activity::InputStatus
source · pub enum InputStatus {
Handled,
Unhandled,
}
Expand description
Indicates whether an application has handled or ignored an event
If an event is not handled by an application then some default handling may happen.
Variants§
Trait Implementations§
source§impl Clone for InputStatus
impl Clone for InputStatus
source§fn clone(&self) -> InputStatus
fn clone(&self) -> InputStatus
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 InputStatus
impl Debug for InputStatus
source§impl PartialEq for InputStatus
impl PartialEq for InputStatus
source§fn eq(&self, other: &InputStatus) -> bool
fn eq(&self, other: &InputStatus) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for InputStatus
impl Eq for InputStatus
impl StructuralPartialEq for InputStatus
Auto Trait Implementations§
impl Freeze for InputStatus
impl RefUnwindSafe for InputStatus
impl Send for InputStatus
impl Sync for InputStatus
impl Unpin for InputStatus
impl UnwindSafe for InputStatus
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