#[repr(u8)]
pub enum Event {
Show 17 variants
Start,
Resume,
SaveInstanceState,
Pause,
Stop,
Destroy,
ConfigChanged,
LowMemory,
WindowLostFocus,
WindowHasFocus,
WindowCreated,
WindowResized,
WindowRedrawNeeded,
WindowDestroyed,
InputQueueCreated,
InputQueueDestroyed,
ContentRectChanged,
}
Variants
Start
Resume
SaveInstanceState
Pause
Stop
Destroy
ConfigChanged
LowMemory
WindowLostFocus
WindowHasFocus
WindowCreated
WindowResized
WindowRedrawNeeded
WindowDestroyed
If the window is in use by ie. a graphics API, make sure the lock from
native_window()
is held on to until after freeing those resources.
After receiving this Event
ndk_glue
will block until that read-lock
is released before returning to Android and allowing it to free up the window.
InputQueueCreated
InputQueueDestroyed
After receiving this Event
ndk_glue
will block until the read-lock from
input_queue()
is released before returning to Android and allowing it to
free up the input queue.
ContentRectChanged
Trait Implementations
impl Eq for Event
impl StructuralEq for Event
impl StructuralPartialEq for Event
Auto Trait Implementations
impl RefUnwindSafe for Event
impl Send for Event
impl Sync for Event
impl Unpin for Event
impl UnwindSafe for Event
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more