[][src]Enum input::ClickMethod

pub enum ClickMethod {
    ButtonAreas,
    Clickfinger,
}

The click method defines when to generate software-emulated buttons, usually on a device that does not have a specific physical button available.

Variants

ButtonAreas

Use software-button areas (see Clickfinger behavior) to generate button events.

Clickfinger

The number of fingers decides which button press to generate.

Trait Implementations

impl Clone for ClickMethod[src]

impl Copy for ClickMethod[src]

impl Debug for ClickMethod[src]

impl Eq for ClickMethod[src]

impl Hash for ClickMethod[src]

impl PartialEq<ClickMethod> for ClickMethod[src]

impl StructuralEq for ClickMethod[src]

impl StructuralPartialEq for ClickMethod[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.