pub trait IHubTalkDataMethods: IHubTalkData {
// Provided methods
fn get_krid(self) -> Il2CppString { ... }
fn set_krid(self, value: impl Into<Il2CppString>) { ... }
fn get_count(self) -> i32 { ... }
fn set_count(self, value: impl Into<i32>) { ... }
fn get_args0(self) -> i32 { ... }
fn set_args0(self, value: impl Into<i32>) { ... }
fn get_args1(self) -> i32 { ... }
fn set_args1(self, value: impl Into<i32>) { ... }
fn get_item(self) -> Il2CppString { ... }
fn set_item(self, value: impl Into<Il2CppString>) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_krid(self) -> Il2CppString
fn get_krid(self) -> Il2CppString
get_KRID() overload
Sourcefn set_krid(self, value: impl Into<Il2CppString>)
fn set_krid(self, value: impl Into<Il2CppString>)
set_KRID(::unity::Il2CppString) overload
Sourcefn get_item(self) -> Il2CppString
fn get_item(self) -> Il2CppString
get_Item() overload
Sourcefn set_item(self, value: impl Into<Il2CppString>)
fn set_item(self, value: impl Into<Il2CppString>)
set_Item(::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: IHubTalkData> IHubTalkDataMethods for __T
Available on crate feature
app-hubtalkdata only.