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
WindowEvent
Fields of WindowEvent
window_id: WindowId | |
event: WindowEvent |
DeviceEvent
Fields of DeviceEvent
device_id: DeviceId | |
event: DeviceEvent |
Awakened
Suspended(bool)
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
fn fmt(&self, __arg_0: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter. Read more