pub trait IMapHistoryDataMethods: IMapHistoryData {
// Provided methods
fn get_mhid(self) -> Il2CppString { ... }
fn set_mhid(self, value: impl Into<Il2CppString>) { ... }
fn get_action(self) -> Il2CppString { ... }
fn set_action(self, value: impl Into<Il2CppString>) { ... }
fn get_priority(self) -> u8 { ... }
fn set_priority(self, value: impl Into<u8>) { ... }
fn get_action_text(self) -> Il2CppString { ... }
fn get_debug_name(self) -> Il2CppString { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_mhid(self) -> Il2CppString
fn get_mhid(self) -> Il2CppString
get_Mhid() overload
Sourcefn set_mhid(self, value: impl Into<Il2CppString>)
fn set_mhid(self, value: impl Into<Il2CppString>)
set_Mhid(::unity::Il2CppString) overload
Sourcefn get_action(self) -> Il2CppString
fn get_action(self) -> Il2CppString
get_Action() overload
Sourcefn set_action(self, value: impl Into<Il2CppString>)
fn set_action(self, value: impl Into<Il2CppString>)
set_Action(::unity::Il2CppString) overload
Sourcefn get_priority(self) -> u8
fn get_priority(self) -> u8
get_Priority() overload
Sourcefn set_priority(self, value: impl Into<u8>)
fn set_priority(self, value: impl Into<u8>)
set_Priority(u8) overload
Sourcefn get_action_text(self) -> Il2CppString
fn get_action_text(self) -> Il2CppString
GetActionText() 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: IMapHistoryData> IMapHistoryDataMethods for __T
Available on crate feature
app-maphistorydata only.