Skip to main content

IRewardDataMethods

Trait IRewardDataMethods 

Source
pub trait IRewardDataMethods: IRewardData {
Show 18 methods // Provided methods fn get_iid(self) -> Il2CppString { ... } fn set_iid(self, value: impl Into<Il2CppString>) { ... } fn get_ratio(self) -> f32 { ... } fn set_ratio(self, value: impl Into<f32>) { ... } fn get_factor(self) -> f32 { ... } fn set_factor(self, value: impl Into<f32>) { ... } fn get_min(self) -> f32 { ... } fn set_min(self, value: impl Into<f32>) { ... } fn get_max(self) -> f32 { ... } fn set_max(self, value: impl Into<f32>) { ... } fn get_is_show(self) -> bool { ... } fn set_is_show(self, value: impl Into<bool>) { ... } fn get_condition(self) -> Il2CppString { ... } fn set_condition(self, value: impl Into<Il2CppString>) { ... } fn get_item(self) -> ItemData { ... } fn get_debug_name(self) -> Il2CppString { ... } fn get_percent(self, level: impl Into<i32>) -> f32 { ... } fn ctor(self) { ... }
}

Provided Methods§

Source

fn get_iid(self) -> Il2CppString

get_Iid() overload

Source

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

set_Iid(::unity::Il2CppString) overload

Source

fn get_ratio(self) -> f32

get_Ratio() overload

Source

fn set_ratio(self, value: impl Into<f32>)

set_Ratio(f32) overload

Source

fn get_factor(self) -> f32

get_Factor() overload

Source

fn set_factor(self, value: impl Into<f32>)

set_Factor(f32) overload

Source

fn get_min(self) -> f32

get_Min() overload

Source

fn set_min(self, value: impl Into<f32>)

set_Min(f32) overload

Source

fn get_max(self) -> f32

get_Max() overload

Source

fn set_max(self, value: impl Into<f32>)

set_Max(f32) overload

Source

fn get_is_show(self) -> bool

get_IsShow() overload

Source

fn set_is_show(self, value: impl Into<bool>)

set_IsShow(bool) overload

Source

fn get_condition(self) -> Il2CppString

get_Condition() overload

Source

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

set_Condition(::unity::Il2CppString) overload

Source

fn get_item(self) -> ItemData

GetItem() overload

Source

fn get_debug_name(self) -> Il2CppString

GetDebugName() overload

Source

fn get_percent(self, level: impl Into<i32>) -> f32

GetPercent(i32) 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: IRewardData> IRewardDataMethods for __T

Available on crate feature app-rewarddata only.