pub trait ITestSampleDataMethods: ITestSampleData {
// Provided methods
fn get_key(self) -> Il2CppString { ... }
fn on_build(self) { ... }
fn on_release(self) { ... }
fn get_debug_name(self) -> Il2CppString { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_key(self) -> Il2CppString
fn get_key(self) -> Il2CppString
GetKey() 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: ITestSampleData> ITestSampleDataMethods for __T
Available on crate feature
root-testsampledata only.