[][src]Enum gdk::InputMode

#[non_exhaustive]pub enum InputMode {
    Disabled,
    Screen,
    Window,
    // some variants omitted
}

An enumeration that describes the mode of an input device.

Variants (Non-exhaustive)

Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Disabled

the device is disabled and will not report any events.

Screen

the device is enabled. The device’s coordinate space maps to the entire screen.

Window

the device is enabled. The device’s coordinate space is mapped to a single window. The manner in which this window is chosen is undefined, but it will typically be the same way in which the focus window for key events is determined.

Trait Implementations

impl Clone for InputMode[src]

impl Copy for InputMode[src]

impl Debug for InputMode[src]

impl Display for InputMode[src]

impl Eq for InputMode[src]

impl<'a> FromValue<'a> for InputMode[src]

impl<'a> FromValueOptional<'a> for InputMode[src]

impl Hash for InputMode[src]

impl Ord for InputMode[src]

impl PartialEq<InputMode> for InputMode[src]

impl PartialOrd<InputMode> for InputMode[src]

impl SetValue for InputMode[src]

impl StaticType for InputMode[src]

impl StructuralEq for InputMode[src]

impl StructuralPartialEq for InputMode[src]

Auto Trait Implementations

impl RefUnwindSafe for InputMode

impl Send for InputMode

impl Sync for InputMode

impl Unpin for InputMode

impl UnwindSafe for InputMode

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> ToSendValue for T where
    T: ToValue + SetValue + Send + ?Sized

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> ToValue for T where
    T: SetValue + ?Sized

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.