Skip to main content

IVersusRewardDataMethods

Trait IVersusRewardDataMethods 

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

Source

fn get_type_id(self) -> Il2CppString

get_TypeID() overload

Source

fn set_type_id(self, value: impl Into<Il2CppString>)

set_TypeID(::unity::Il2CppString) overload

Source

fn get_iids(self) -> Array<Il2CppString>

get_Iids() overload

Source

fn set_iids(self, value: impl Into<Array<Il2CppString>>)

set_Iids(::unity::Array<::unity::Il2CppString>) overload

Source

fn get_nums(self) -> Array<i32>

get_Nums() overload

Source

fn set_nums(self, value: impl Into<Array<i32>>)

set_Nums(::unity::Array<i32>) overload

Source

fn get_conditions(self) -> Array<Il2CppString>

get_Conditions() overload

Source

fn set_conditions(self, value: impl Into<Array<Il2CppString>>)

set_Conditions(::unity::Array<::unity::Il2CppString>) overload

Source

fn on_completed(self)

OnCompleted() overload

Source

fn get_debug_name(self) -> Il2CppString

GetDebugName() overload

Source

fn try_get_random_item(self) -> (bool, Il2CppString, i32)

TryGetRandomItem(*mut::unity::Il2CppString, *muti32) overload

Source

fn ctor(self)

.ctor() 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: IVersusRewardData> IVersusRewardDataMethods for __T

Available on crate feature app-versusrewarddata only.