Enum amethyst_renderer::Event [−]
pub enum Event {
WindowEvent {
window_id: WindowId,
event: WindowEvent,
},
DeviceEvent {
device_id: DeviceId,
event: DeviceEvent,
},
Awakened,
Suspended(bool),
}Describes a generic event.
Variants
WindowEventFields of WindowEvent
window_id: WindowId | |
event: WindowEvent |
DeviceEventFields of DeviceEvent
device_id: DeviceId | |
event: DeviceEvent |
AwakenedSuspended(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 Clone for Event
impl Clone for Eventfn clone(&self) -> Event
fn clone(&self) -> EventReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Debug for Event
impl Debug for Event