Enum input::event::pointer::AxisSource [] [src]

pub enum AxisSource {
    Wheel,
    Finger,
    Continuous,
    WheelTilt,
}

The source for a PointerAxisEvent.

Variants

The event is caused by the rotation of a wheel.

The event is caused by the movement of one or more fingers on a device.

The event is caused by the motion of some device.

The event is caused by the tilting of a mouse wheel rather than its rotation.

This method is commonly used on mice without separate horizontal scroll wheels.

Trait Implementations

impl Debug for AxisSource
[src]

Formats the value using the given formatter.

impl Clone for AxisSource
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for AxisSource
[src]

impl PartialEq for AxisSource
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for AxisSource
[src]

impl Hash for AxisSource
[src]

Feeds this value into the state given, updating the hasher as necessary.

Feeds a slice of this type into the state provided.