pub trait IKeyHelpDataMethods: IKeyHelpData {
// Provided methods
fn get_button_index(self) -> i8 { ... }
fn set_button_index(self, value: impl Into<i8>) { ... }
fn get_mid(self) -> Il2CppString { ... }
fn set_mid(self, value: impl Into<Il2CppString>) { ... }
fn ctor(self) { ... }
}Provided Methods§
get_ButtonIndex() overload
set_ButtonIndex(i8) overload
Sourcefn get_mid(self) -> Il2CppString
fn get_mid(self) -> Il2CppString
get_MID() overload
Sourcefn set_mid(self, value: impl Into<Il2CppString>)
fn set_mid(self, value: impl Into<Il2CppString>)
set_MID(::unity::Il2CppString) 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: IKeyHelpData> IKeyHelpDataMethods for __T
Available on crate feature
app-keyhelpdata only.