pub enum TapCount {
Single,
Double,
Triple,
}Expand description
How many consecutive taps a press represents, mirroring the platform text selection gestures: one tap places the cursor, two select the word, three select the line/paragraph.
Variants§
Implementations§
Trait Implementations§
impl Copy for TapCount
impl Eq for TapCount
impl StructuralPartialEq for TapCount
Auto Trait Implementations§
impl Freeze for TapCount
impl RefUnwindSafe for TapCount
impl Send for TapCount
impl Sync for TapCount
impl Unpin for TapCount
impl UnsafeUnpin for TapCount
impl UnwindSafe for TapCount
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