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§
Sourcefn get_iid(self) -> Il2CppString
fn get_iid(self) -> Il2CppString
get_Iid() overload
Sourcefn set_iid(self, value: impl Into<Il2CppString>)
fn set_iid(self, value: impl Into<Il2CppString>)
set_Iid(::unity::Il2CppString) overload
Sourcefn get_factor(self) -> f32
fn get_factor(self) -> f32
get_Factor() overload
Sourcefn set_factor(self, value: impl Into<f32>)
fn set_factor(self, value: impl Into<f32>)
set_Factor(f32) overload
Sourcefn get_is_show(self) -> bool
fn get_is_show(self) -> bool
get_IsShow() overload
Sourcefn set_is_show(self, value: impl Into<bool>)
fn set_is_show(self, value: impl Into<bool>)
set_IsShow(bool) overload
Sourcefn get_condition(self) -> Il2CppString
fn get_condition(self) -> Il2CppString
get_Condition() overload
Sourcefn set_condition(self, value: impl Into<Il2CppString>)
fn set_condition(self, value: impl Into<Il2CppString>)
set_Condition(::unity::Il2CppString) overload
Sourcefn get_debug_name(self) -> Il2CppString
fn get_debug_name(self) -> Il2CppString
GetDebugName() overload
Sourcefn get_percent(self, level: impl Into<i32>) -> f32
fn get_percent(self, level: impl Into<i32>) -> f32
GetPercent(i32) 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: IRewardData> IRewardDataMethods for __T
Available on crate feature
app-rewarddata only.