pub enum TapReportingMode {
Immediate = 0,
Confirmed = 1,
}Expand description
Reporting policy for tap gesture confirmation.
Variants§
Immediate = 0
Report the gesture as soon as it is detected.
Confirmed = 1
Delay reporting until the configured gesture timeout confirms it.
Trait Implementations§
Source§impl Clone for TapReportingMode
impl Clone for TapReportingMode
Source§fn clone(&self) -> TapReportingMode
fn clone(&self) -> TapReportingMode
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 TapReportingMode
impl Debug for TapReportingMode
Source§impl Format for TapReportingMode
impl Format for TapReportingMode
Source§impl PartialEq for TapReportingMode
impl PartialEq for TapReportingMode
impl Copy for TapReportingMode
impl Eq for TapReportingMode
impl StructuralPartialEq for TapReportingMode
Auto Trait Implementations§
impl Freeze for TapReportingMode
impl RefUnwindSafe for TapReportingMode
impl Send for TapReportingMode
impl Sync for TapReportingMode
impl Unpin for TapReportingMode
impl UnsafeUnpin for TapReportingMode
impl UnwindSafe for TapReportingMode
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