[][src]Enum storm::InputMessage

pub enum InputMessage {
    CloseRequested,
    KeyPressed(KeyboardButton),
    KeyReleased(KeyboardButton),
    CursorPressed(CursorButtonVector2<f32>),
    CursorReleased(CursorButtonVector2<f32>),
    CursorMoved(Vector2<f32>),
    CursorLeft,
    CursorEntered,
    WindowResized(Vector2<f32>),
}

An input event. These are represented as an enumeration to preserve ordering when stored in a vector and read sequentially.

Variants

CloseRequested

The window has requested it close.

KeyPressed(KeyboardButton)

Keyboard press event.

KeyReleased(KeyboardButton)

Keyboard release event.

CursorPressed(CursorButtonVector2<f32>)

Cursor press event. Contains the button pressed and the position it was pressed at.

CursorReleased(CursorButtonVector2<f32>)

Cursor release event. Contains the button released and the position it was released at.

CursorMoved(Vector2<f32>)

Cursor moved event. Contains the position of the cursor.

CursorLeft

Cursor left the bounds of the window event.

CursorEntered

Cursor entered the bounds of the window event.

WindowResized(Vector2<f32>)

Window resized event. Contains the new dimensions of the window.

Trait Implementations

impl Clone for InputMessage[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Copy for InputMessage[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

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, 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> Borrow<T> for T where
    T: ?Sized
[src]

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

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