Skip to main content

IRelayAwardeeDataMethods

Trait IRelayAwardeeDataMethods 

Source
pub trait IRelayAwardeeDataMethods: IRelayAwardeeData {
Show 17 methods // Provided methods fn ctor(self) { ... } fn register( self, unit: impl Into<Unit>, record_value: impl Into<i32>, item: impl Into<ItemData>, ) { ... } fn register_2( self, leaving_unit_data: impl Into<RelayLeavingUnitData>, record_value: impl Into<i32>, item: impl Into<ItemData>, ) { ... } 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_value(self) -> i32 { ... } fn get_relay_player_index(self) -> u8 { ... } fn get_is_morth(self) -> bool { ... } fn get_item(self) -> ItemData { ... }
}

Provided Methods§

Source

fn ctor(self)

.ctor() overload

Source

fn register( self, unit: impl Into<Unit>, record_value: impl Into<i32>, item: impl Into<ItemData>, )

Register(crate::app::unit::Unit, i32, crate::app::itemdata::ItemData) overload

Source

fn register_2( self, leaving_unit_data: impl Into<RelayLeavingUnitData>, record_value: impl Into<i32>, item: impl Into<ItemData>, )

Register(crate::app::relayleavingunitdata::RelayLeavingUnitData, i32, crate::app::itemdata::ItemData) 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_value(self) -> i32

get_RecordValue() overload

Source

fn get_relay_player_index(self) -> u8

get_RelayPlayerIndex() overload

Source

fn get_is_morth(self) -> bool

get_IsMorth() overload

Source

fn get_item(self) -> ItemData

get_Item() 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: IRelayAwardeeData> IRelayAwardeeDataMethods for __T

Available on crate feature app-relayawardeedata only.