pub trait IStateMethods: IState {
// Provided methods
fn get_name(self) -> Il2CppString { ... }
fn ctor(self) { ... }
fn on_enter(self) { ... }
fn on_update(self) { ... }
fn on_late_update(self) { ... }
fn on_exit(self) { ... }
fn dispose(self) { ... }
fn exit(self) { ... }
fn get_abort_by_interrupt(self) -> bool { ... }
}Provided Methods§
Sourcefn get_name(self) -> Il2CppString
fn get_name(self) -> Il2CppString
get_Name() overload
Sourcefn on_late_update(self)
fn on_late_update(self)
OnLateUpdate() overload
Sourcefn get_abort_by_interrupt(self) -> bool
fn get_abort_by_interrupt(self) -> bool
get_AbortByInterrupt() overload
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementors§
impl<__T: IState> IStateMethods for __T
Available on crate feature
combat-state only.