#[repr(i32)]pub enum MainLoopNotification {
Show 14 variants
OS_MEMORY_WARNING = 2_009,
TRANSLATION_CHANGED = 2_010,
WM_ABOUT = 2_011,
CRASH = 2_012,
OS_IME_UPDATE = 2_013,
APPLICATION_RESUMED = 2_014,
APPLICATION_PAUSED = 2_015,
APPLICATION_FOCUS_IN = 2_016,
APPLICATION_FOCUS_OUT = 2_017,
TEXT_SERVER_CHANGED = 2_018,
POSTINITIALIZE = 0,
PREDELETE = 1,
EXTENSION_RELOADED = 2,
Unknown(i32),
}
Expand description
Variants§
OS_MEMORY_WARNING = 2_009
TRANSLATION_CHANGED = 2_010
WM_ABOUT = 2_011
CRASH = 2_012
OS_IME_UPDATE = 2_013
APPLICATION_RESUMED = 2_014
APPLICATION_PAUSED = 2_015
APPLICATION_FOCUS_IN = 2_016
APPLICATION_FOCUS_OUT = 2_017
TEXT_SERVER_CHANGED = 2_018
POSTINITIALIZE = 0
PREDELETE = 1
EXTENSION_RELOADED = 2
Unknown(i32)
Since Godot represents notifications as integers, it’s always possible that a notification outside the known types
is received. For example, the user can manually issue notifications through Object::notify()
.
This is also necessary if you develop an extension on a Godot version and want to be forward-compatible with newer versions. If Godot adds new notifications, they will be unknown to your extension, but you can still handle them.
Trait Implementations§
Source§impl Clone for MainLoopNotification
impl Clone for MainLoopNotification
Source§fn clone(&self) -> MainLoopNotification
fn clone(&self) -> MainLoopNotification
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for MainLoopNotification
impl Debug for MainLoopNotification
Source§impl From<MainLoopNotification> for i32
impl From<MainLoopNotification> for i32
Source§fn from(notification: MainLoopNotification) -> i32
fn from(notification: MainLoopNotification) -> i32
Converts to this type from the input type.
Source§impl From<i32> for MainLoopNotification
impl From<i32> for MainLoopNotification
Source§impl Hash for MainLoopNotification
impl Hash for MainLoopNotification
Source§impl Ord for MainLoopNotification
impl Ord for MainLoopNotification
Source§fn cmp(&self, other: &MainLoopNotification) -> Ordering
fn cmp(&self, other: &MainLoopNotification) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for MainLoopNotification
impl PartialEq for MainLoopNotification
Source§impl PartialOrd for MainLoopNotification
impl PartialOrd for MainLoopNotification
impl Copy for MainLoopNotification
impl Eq for MainLoopNotification
impl StructuralPartialEq for MainLoopNotification
Auto Trait Implementations§
impl Freeze for MainLoopNotification
impl RefUnwindSafe for MainLoopNotification
impl Send for MainLoopNotification
impl Sync for MainLoopNotification
impl Unpin for MainLoopNotification
impl UnwindSafe for MainLoopNotification
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