pub trait IStructBaseMethods: IStructBase {
// Provided methods
fn on_build(self) { ... }
fn on_completed(self) { ... }
fn on_completed_end(self) { ... }
fn on_release(self) { ... }
fn get_debug_name(self) -> Il2CppString { ... }
fn get_index(self) -> i32 { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn on_completed(self)
fn on_completed(self)
OnCompleted() overload
Sourcefn on_completed_end(self)
fn on_completed_end(self)
OnCompletedEnd() overload
Sourcefn on_release(self)
fn on_release(self)
OnRelease() overload
Sourcefn get_debug_name(self) -> Il2CppString
fn get_debug_name(self) -> Il2CppString
GetDebugName() 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: IStructBase> IStructBaseMethods for __T
Available on crate feature
app-structbase only.