Enum limn_core::prelude::glutin::Event []

pub enum Event {
    WindowEvent {
        window_id: WindowId,
        event: WindowEvent,
    },
    DeviceEvent {
        device_id: DeviceId,
        event: DeviceEvent,
    },
    Awakened,
    Suspended(bool),
}

Describes a generic event.

Variants

Fields of WindowEvent

Fields of DeviceEvent

The application has been suspended or resumed.

The parameter is true if app was suspended, and false if it has been resumed.

Trait Implementations

impl Debug for Event

Formats the value using the given formatter. Read more

impl Clone for Event

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more