Skip to main content

IMapHistory_CommandReaderMethods

Trait IMapHistory_CommandReaderMethods 

Source
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§

Source

fn ctor(self, command_stream_buffer: impl Into<Array<u8>>)

.ctor(::unity::Array<u8>) overload

Source

fn prepare(self, command: impl Into<MapHistory_Command>)

Prepare(crate::app::maphistory::MapHistory_Command) overload

Source

fn read_variable_key(self) -> Il2CppString

ReadVariableKey() overload

Source

fn read_gid(self) -> Il2CppString

ReadGid() overload

Source

fn read_god_data(self) -> GodData

ReadGodData() overload

Source

fn read_tid(self) -> Il2CppString

ReadTid() overload

Source

fn read_iid(self) -> Il2CppString

ReadIid() overload

Source

fn read_item_data(self) -> ItemData

ReadItemData() overload

Source

fn read_pid(self) -> Il2CppString

ReadPid() overload

Source

fn skip_pid(self)

SkipPid() overload

Source

fn read_jid(self) -> Il2CppString

ReadJid() overload

Source

fn skip_jid(self)

SkipJid() overload

Source

fn read_sid(self) -> Il2CppString

ReadSid() overload

Source

fn read_skill_data(self) -> SkillData

ReadSkillData() overload

Source

fn read_effect_name(self) -> Il2CppString

ReadEffectName() overload

Source

fn read_material_string(self) -> Il2CppString

ReadMaterialString() overload

Source

fn read_rnid(self) -> Il2CppString

ReadRnid() overload

Source

fn read_random(self, random: impl Into<Random_2>)

ReadRandom(crate::app::random_2::Random_2) overload

Source

fn get_type(self) -> i32

get_Type() 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§

Source§

impl<__T: IMapHistory_CommandReader> IMapHistory_CommandReaderMethods for __T

Available on crate feature app-maphistory only.