pub trait IRelayLeavingUnitDataMethods: IRelayLeavingUnitData {
Show 15 methods
// Provided methods
fn ctor(self) { ... }
fn register(self, unit: impl Into<Unit>) { ... }
fn clear(self) { ... }
fn get_name(self) -> Il2CppString { ... }
fn is_female(self) -> bool { ... }
fn get_god_name(self) -> Il2CppString { ... }
fn serialize(self, stream: impl Into<Stream_2>) { ... }
fn deserialize(self, stream: impl Into<Stream_2>) { ... }
fn get_edit(self) -> UnitEdit { ... }
fn get_person(self) -> PersonData { ... }
fn get_job(self) -> JobData { ... }
fn get_god(self) -> GodData { ... }
fn get_record(self) -> UnitRecord { ... }
fn get_relay_player_index(self) -> u8 { ... }
fn get_is_morph(self) -> bool { ... }
}Provided Methods§
Sourcefn get_name(self) -> Il2CppString
fn get_name(self) -> Il2CppString
GetName() overload
Sourcefn get_god_name(self) -> Il2CppString
fn get_god_name(self) -> Il2CppString
GetGodName() overload
Sourcefn serialize(self, stream: impl Into<Stream_2>)
fn serialize(self, stream: impl Into<Stream_2>)
Serialize(crate::app::stream_2::Stream_2) overload
Sourcefn deserialize(self, stream: impl Into<Stream_2>)
fn deserialize(self, stream: impl Into<Stream_2>)
Deserialize(crate::app::stream_2::Stream_2) overload
Sourcefn get_person(self) -> PersonData
fn get_person(self) -> PersonData
get_Person() overload
Sourcefn get_record(self) -> UnitRecord
fn get_record(self) -> UnitRecord
get_Record() overload
Sourcefn get_relay_player_index(self) -> u8
fn get_relay_player_index(self) -> u8
get_RelayPlayerIndex() overload
Sourcefn get_is_morph(self) -> bool
fn get_is_morph(self) -> bool
get_IsMorph() 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: IRelayLeavingUnitData> IRelayLeavingUnitDataMethods for __T
Available on crate feature
app-relayleavingunitdata only.