pub trait ITalkKeyWaitMethods: ITalkKeyWait {
// Provided methods
fn ctor(self, mid: impl Into<Il2CppString>) { ... }
fn on_create(self) { ... }
fn on_dispose(self) { ... }
fn tick(self) { ... }
fn on_shutdown(self) { ... }
}Provided Methods§
Sourcefn ctor(self, mid: impl Into<Il2CppString>)
fn ctor(self, mid: impl Into<Il2CppString>)
.ctor(::unity::Il2CppString) overload
Sourcefn on_dispose(self)
fn on_dispose(self)
OnDispose() overload
Sourcefn on_shutdown(self)
fn on_shutdown(self)
OnShutdown() 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: ITalkKeyWait> ITalkKeyWaitMethods for __T
Available on crate feature
app-talk3_d-talkkeywait only.