pub trait IVersusRewardDataMethods: IVersusRewardData {
// Provided methods
fn get_type_id(self) -> Il2CppString { ... }
fn set_type_id(self, value: impl Into<Il2CppString>) { ... }
fn get_iids(self) -> Array<Il2CppString> { ... }
fn set_iids(self, value: impl Into<Array<Il2CppString>>) { ... }
fn get_nums(self) -> Array<i32> { ... }
fn set_nums(self, value: impl Into<Array<i32>>) { ... }
fn get_conditions(self) -> Array<Il2CppString> { ... }
fn set_conditions(self, value: impl Into<Array<Il2CppString>>) { ... }
fn on_completed(self) { ... }
fn get_debug_name(self) -> Il2CppString { ... }
fn try_get_random_item(self) -> (bool, Il2CppString, i32) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_type_id(self) -> Il2CppString
fn get_type_id(self) -> Il2CppString
get_TypeID() overload
Sourcefn set_type_id(self, value: impl Into<Il2CppString>)
fn set_type_id(self, value: impl Into<Il2CppString>)
set_TypeID(::unity::Il2CppString) overload
Sourcefn get_iids(self) -> Array<Il2CppString>
fn get_iids(self) -> Array<Il2CppString>
get_Iids() overload
Sourcefn set_iids(self, value: impl Into<Array<Il2CppString>>)
fn set_iids(self, value: impl Into<Array<Il2CppString>>)
set_Iids(::unity::Array<::unity::Il2CppString>) overload
Sourcefn get_conditions(self) -> Array<Il2CppString>
fn get_conditions(self) -> Array<Il2CppString>
get_Conditions() overload
Sourcefn set_conditions(self, value: impl Into<Array<Il2CppString>>)
fn set_conditions(self, value: impl Into<Array<Il2CppString>>)
set_Conditions(::unity::Array<::unity::Il2CppString>) overload
Sourcefn on_completed(self)
fn on_completed(self)
OnCompleted() overload
Sourcefn get_debug_name(self) -> Il2CppString
fn get_debug_name(self) -> Il2CppString
GetDebugName() overload
Sourcefn try_get_random_item(self) -> (bool, Il2CppString, i32)
fn try_get_random_item(self) -> (bool, Il2CppString, i32)
TryGetRandomItem(*mut::unity::Il2CppString, *muti32) 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: IVersusRewardData> IVersusRewardDataMethods for __T
Available on crate feature
app-versusrewarddata only.