pub trait IBattleParamMethods: IBattleParam {
// Provided methods
fn get_kind(self) -> BattleParam_Kinds { ... }
fn get_name(self) -> Il2CppString { ... }
fn get_result(self, side: impl Into<BattleInfoSide>) -> f32 { ... }
fn calculate(self, side: impl Into<BattleInfoSide>) -> f32 { ... }
fn ctor(self) { ... }
fn ctor_2(self, src: impl Into<BattleParam>) { ... }
fn clear(self) { ... }
fn copy(self, src: impl Into<BattleParam>) { ... }
}Provided Methods§
Sourcefn get_kind(self) -> BattleParam_Kinds
fn get_kind(self) -> BattleParam_Kinds
get_Kind() overload
Sourcefn get_name(self) -> Il2CppString
fn get_name(self) -> Il2CppString
get_Name() overload
Sourcefn get_result(self, side: impl Into<BattleInfoSide>) -> f32
fn get_result(self, side: impl Into<BattleInfoSide>) -> f32
GetResult(crate::app::battleinfoside::BattleInfoSide) overload
Sourcefn calculate(self, side: impl Into<BattleInfoSide>) -> f32
fn calculate(self, side: impl Into<BattleInfoSide>) -> f32
Calculate(crate::app::battleinfoside::BattleInfoSide) overload
Sourcefn ctor_2(self, src: impl Into<BattleParam>)
fn ctor_2(self, src: impl Into<BattleParam>)
.ctor(crate::app::battleparam::BattleParam) overload
Sourcefn copy(self, src: impl Into<BattleParam>)
fn copy(self, src: impl Into<BattleParam>)
Copy(crate::app::battleparam::BattleParam) 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: IBattleParam> IBattleParamMethods for __T
Available on crate feature
app-battleparam only.