pub trait IMapHistory_CommandReaderMethods: IMapHistory_CommandReader {
Show 19 methods
// Provided methods
fn ctor(self, command_stream_buffer: impl Into<Array<u8>>) { ... }
fn prepare(self, command: impl Into<MapHistory_Command>) { ... }
fn read_variable_key(self) -> Il2CppString { ... }
fn read_gid(self) -> Il2CppString { ... }
fn read_god_data(self) -> GodData { ... }
fn read_tid(self) -> Il2CppString { ... }
fn read_iid(self) -> Il2CppString { ... }
fn read_item_data(self) -> ItemData { ... }
fn read_pid(self) -> Il2CppString { ... }
fn skip_pid(self) { ... }
fn read_jid(self) -> Il2CppString { ... }
fn skip_jid(self) { ... }
fn read_sid(self) -> Il2CppString { ... }
fn read_skill_data(self) -> SkillData { ... }
fn read_effect_name(self) -> Il2CppString { ... }
fn read_material_string(self) -> Il2CppString { ... }
fn read_rnid(self) -> Il2CppString { ... }
fn read_random(self, random: impl Into<Random_2>) { ... }
fn get_type(self) -> i32 { ... }
}Provided Methods§
Sourcefn prepare(self, command: impl Into<MapHistory_Command>)
fn prepare(self, command: impl Into<MapHistory_Command>)
Prepare(crate::app::maphistory::MapHistory_Command) overload
Sourcefn read_variable_key(self) -> Il2CppString
fn read_variable_key(self) -> Il2CppString
ReadVariableKey() overload
Sourcefn read_gid(self) -> Il2CppString
fn read_gid(self) -> Il2CppString
ReadGid() overload
Sourcefn read_god_data(self) -> GodData
fn read_god_data(self) -> GodData
ReadGodData() overload
Sourcefn read_tid(self) -> Il2CppString
fn read_tid(self) -> Il2CppString
ReadTid() overload
Sourcefn read_iid(self) -> Il2CppString
fn read_iid(self) -> Il2CppString
ReadIid() overload
Sourcefn read_item_data(self) -> ItemData
fn read_item_data(self) -> ItemData
ReadItemData() overload
Sourcefn read_pid(self) -> Il2CppString
fn read_pid(self) -> Il2CppString
ReadPid() overload
Sourcefn read_jid(self) -> Il2CppString
fn read_jid(self) -> Il2CppString
ReadJid() overload
Sourcefn read_sid(self) -> Il2CppString
fn read_sid(self) -> Il2CppString
ReadSid() overload
Sourcefn read_skill_data(self) -> SkillData
fn read_skill_data(self) -> SkillData
ReadSkillData() overload
Sourcefn read_effect_name(self) -> Il2CppString
fn read_effect_name(self) -> Il2CppString
ReadEffectName() overload
Sourcefn read_material_string(self) -> Il2CppString
fn read_material_string(self) -> Il2CppString
ReadMaterialString() overload
Sourcefn read_rnid(self) -> Il2CppString
fn read_rnid(self) -> Il2CppString
ReadRnid() overload
Sourcefn read_random(self, random: impl Into<Random_2>)
fn read_random(self, random: impl Into<Random_2>)
ReadRandom(crate::app::random_2::Random_2) 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: IMapHistory_CommandReader> IMapHistory_CommandReaderMethods for __T
Available on crate feature
app-maphistory only.