Skip to main content

IRelayLeavingUnitDataMethods

Trait IRelayLeavingUnitDataMethods 

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

Source

fn ctor(self)

.ctor() overload

Source

fn register(self, unit: impl Into<Unit>)

Register(crate::app::unit::Unit) overload

Source

fn clear(self)

Clear() overload

Source

fn get_name(self) -> Il2CppString

GetName() overload

Source

fn is_female(self) -> bool

IsFemale() overload

Source

fn get_god_name(self) -> Il2CppString

GetGodName() overload

Source

fn serialize(self, stream: impl Into<Stream_2>)

Serialize(crate::app::stream_2::Stream_2) overload

Source

fn deserialize(self, stream: impl Into<Stream_2>)

Deserialize(crate::app::stream_2::Stream_2) overload

Source

fn get_edit(self) -> UnitEdit

get_Edit() overload

Source

fn get_person(self) -> PersonData

get_Person() overload

Source

fn get_job(self) -> JobData

get_Job() overload

Source

fn get_god(self) -> GodData

get_God() overload

Source

fn get_record(self) -> UnitRecord

get_Record() overload

Source

fn get_relay_player_index(self) -> u8

get_RelayPlayerIndex() overload

Source

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§

Source§

impl<__T: IRelayLeavingUnitData> IRelayLeavingUnitDataMethods for __T

Available on crate feature app-relayleavingunitdata only.