Skip to main content

IStructBaseMethods

Trait IStructBaseMethods 

Source
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§

Source

fn on_build(self)

OnBuild() overload

Source

fn on_completed(self)

OnCompleted() overload

Source

fn on_completed_end(self)

OnCompletedEnd() overload

Source

fn on_release(self)

OnRelease() overload

Source

fn get_debug_name(self) -> Il2CppString

GetDebugName() overload

Source

fn get_index(self) -> i32

GetIndex() overload

Source

fn ctor(self)

.ctor() 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§

Source§

impl<__T: IStructBase> IStructBaseMethods for __T

Available on crate feature app-structbase only.