pub enum EngineEvent {
Quit,
Suspended,
Resumed,
}Expand description
List of all engine events
Variants§
Quit
Fired when the engine is closing
Suspended
Only in Android - Fired when the Activity goes in background
Resumed
Only in Android - Fired when the Activity goes in foreground
Trait Implementations§
Source§impl Debug for EngineEvent
impl Debug for EngineEvent
Source§impl PartialEq for EngineEvent
impl PartialEq for EngineEvent
impl Eq for EngineEvent
impl StructuralPartialEq for EngineEvent
Auto Trait Implementations§
impl Freeze for EngineEvent
impl RefUnwindSafe for EngineEvent
impl Send for EngineEvent
impl Sync for EngineEvent
impl Unpin for EngineEvent
impl UnwindSafe for EngineEvent
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more