Enum evdev_rs::enums::InputProp[][src]

pub enum InputProp {
    INPUT_PROP_POINTER,
    INPUT_PROP_DIRECT,
    INPUT_PROP_BUTTONPAD,
    INPUT_PROP_SEMI_MT,
    INPUT_PROP_TOPBUTTONPAD,
    INPUT_PROP_POINTING_STICK,
    INPUT_PROP_ACCELEROMETER,
    INPUT_PROP_MAX,
}

Variants

INPUT_PROP_POINTER
INPUT_PROP_DIRECT
INPUT_PROP_BUTTONPAD
INPUT_PROP_SEMI_MT
INPUT_PROP_TOPBUTTONPAD
INPUT_PROP_POINTING_STICK
INPUT_PROP_ACCELEROMETER
INPUT_PROP_MAX

Implementations

impl InputProp[src]

pub fn iter(&self) -> InputPropIterator

Notable traits for InputPropIterator

impl Iterator for InputPropIterator type Item = InputProp;
[src]

pub fn from_str(name: &str) -> Option<InputProp>[src]

Look up an input property by its name. Properties start with the fixed prefix “INPUT_PROP_” followed by their name (eg., “INPUT_PROP_POINTER”). The prefix must be included in the name. It returns the constant assigned to the property or Errno if not found.

Trait Implementations

impl Clone for InputProp[src]

impl Debug for InputProp[src]

impl Display for InputProp[src]

impl Eq for InputProp[src]

impl Hash for InputProp[src]

impl PartialEq<InputProp> for InputProp[src]

impl StructuralEq for InputProp[src]

impl StructuralPartialEq for InputProp[src]

Auto Trait Implementations

impl RefUnwindSafe for InputProp

impl Send for InputProp

impl Sync for InputProp

impl Unpin for InputProp

impl UnwindSafe for InputProp

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> ToString for T where
    T: Display + ?Sized
[src]

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.