pub trait IRelayAwardDataMethods: IRelayAwardData {
Show 14 methods
// Provided methods
fn get_raid(self) -> Il2CppString { ... }
fn set_raid(self, value: impl Into<Il2CppString>) { ... }
fn get_name(self) -> Il2CppString { ... }
fn set_name(self, value: impl Into<Il2CppString>) { ... }
fn get_result_text(self) -> Il2CppString { ... }
fn set_result_text(self, value: impl Into<Il2CppString>) { ... }
fn get_awards(self) -> Array<Il2CppString> { ... }
fn set_awards(self, value: impl Into<Array<Il2CppString>>) { ... }
fn get_flag(self) -> RelayAwardData_FlagField { ... }
fn set_flag(self, value: impl Into<RelayAwardData_FlagField>) { ... }
fn on_completed_end(self) { ... }
fn get_debug_name(self) -> Il2CppString { ... }
fn make_infos(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_raid(self) -> Il2CppString
fn get_raid(self) -> Il2CppString
get_Raid() overload
Sourcefn set_raid(self, value: impl Into<Il2CppString>)
fn set_raid(self, value: impl Into<Il2CppString>)
set_Raid(::unity::Il2CppString) overload
Sourcefn get_name(self) -> Il2CppString
fn get_name(self) -> Il2CppString
get_Name() overload
Sourcefn set_name(self, value: impl Into<Il2CppString>)
fn set_name(self, value: impl Into<Il2CppString>)
set_Name(::unity::Il2CppString) overload
Sourcefn get_result_text(self) -> Il2CppString
fn get_result_text(self) -> Il2CppString
get_ResultText() overload
Sourcefn set_result_text(self, value: impl Into<Il2CppString>)
fn set_result_text(self, value: impl Into<Il2CppString>)
set_ResultText(::unity::Il2CppString) overload
Sourcefn get_awards(self) -> Array<Il2CppString>
fn get_awards(self) -> Array<Il2CppString>
get_Awards() overload
Sourcefn set_awards(self, value: impl Into<Array<Il2CppString>>)
fn set_awards(self, value: impl Into<Array<Il2CppString>>)
set_Awards(::unity::Array<::unity::Il2CppString>) overload
Sourcefn get_flag(self) -> RelayAwardData_FlagField
fn get_flag(self) -> RelayAwardData_FlagField
get_Flag() overload
Sourcefn set_flag(self, value: impl Into<RelayAwardData_FlagField>)
fn set_flag(self, value: impl Into<RelayAwardData_FlagField>)
set_Flag(crate::app::relayawarddata::RelayAwardData_FlagField) overload
Sourcefn on_completed_end(self)
fn on_completed_end(self)
OnCompletedEnd() overload
Sourcefn get_debug_name(self) -> Il2CppString
fn get_debug_name(self) -> Il2CppString
GetDebugName() overload
Sourcefn make_infos(self)
fn make_infos(self)
MakeInfos() 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: IRelayAwardData> IRelayAwardDataMethods for __T
Available on crate feature
app-relayawarddata only.