Enum adi_screen::Input [] [src]

pub enum Input {
    Redraw,
    Resize,
    Back,
    Resume,
    Pause,
    EnterWindow,
    LeaveWindow,
    KeyDown(Key),
    KeyRepeat(Key),
    KeyUp(Key),
    Cursor(f32f32),
    LeftDown(f32f32),
    MiddleDown(f32f32),
    RightDown(f32f32),
    LeftUp(f32f32),
    MiddleUp(f32f32),
    RightUp(f32f32),
    ScrollUp(f32f32),
    ScrollDown(f32f32),
    ScrollLeft(f32f32),
    ScrollRight(f32f32),
    JoystickMove(f32f32),
    JoystickPov(f32f32),
    JoystickThrottle(f32),
    JoystickButtonDown(Button),
    JoystickButtonUp(Button),
}

Input represents user input.

Variants

Methods

impl Input
[src]

Trait Implementations

impl PartialEq for Input
[src]

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

This method tests for !=.

impl Copy for Input
[src]

impl Clone for Input
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more