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§
Sourcefn register(
self,
unit: impl Into<Unit>,
record_value: impl Into<i32>,
item: impl Into<ItemData>,
)
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
Sourcefn register_2(
self,
leaving_unit_data: impl Into<RelayLeavingUnitData>,
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>, )
Register(crate::app::relayleavingunitdata::RelayLeavingUnitData, i32, crate::app::itemdata::ItemData) overload
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_value(self) -> i32
fn get_record_value(self) -> i32
get_RecordValue() overload
Sourcefn get_relay_player_index(self) -> u8
fn get_relay_player_index(self) -> u8
get_RelayPlayerIndex() overload
Sourcefn get_is_morth(self) -> bool
fn get_is_morth(self) -> bool
get_IsMorth() 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: IRelayAwardeeData> IRelayAwardeeDataMethods for __T
Available on crate feature
app-relayawardeedata only.