[][src]Enum wayland_client::protocol::wl_pointer::AxisSource

#[repr(u32)]
pub enum AxisSource {
    Wheel,
    Finger,
    Continuous,
    WheelTilt,
    // some variants omitted
}

axis source types

Describes the source types for axis events. This indicates to the client how an axis event was physically generated; a client may adjust the user interface accordingly. For example, scroll events from a "finger" source may be in a smooth coordinate space with kinetic scrolling whereas a "wheel" source may be in discrete steps of a number of lines.

The "continuous" axis source is a device generating events in a continuous coordinate space, but using something other than a finger. One example for this source is button-based scrolling where the vertical motion of a device is converted to scroll events while a button is held down.

The "wheel tilt" axis source indicates that the actual device is a wheel but the scroll event is not caused by a rotation but a (usually sideways) tilt of the wheel.

Variants

Wheel

a physical wheel rotation

Finger

finger on a touch surface

Continuous

continuous coordinate space

WheelTilt

a physical wheel tilt

Methods

impl AxisSource[src]

pub fn from_raw(n: u32) -> Option<AxisSource>[src]

pub fn to_raw(&self) -> u32[src]

Trait Implementations

impl Clone for AxisSource[src]

impl PartialEq<AxisSource> for AxisSource[src]

impl Copy for AxisSource[src]

impl Debug for AxisSource[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

impl<T> From<T> for T[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.

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

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

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

impl<T> Downcast for T where
    T: Any
[src]