pub trait IBattleDetail_DetailParamMethods: IBattleDetail_DetailParam {
// Provided methods
fn ctor(
self,
detail: impl Into<BattleDetail>,
command: impl Into<Il2CppString>,
) { ... }
fn get_detail(self) -> BattleDetail { ... }
fn calculate(self, side: impl Into<BattleInfoSide>) -> f32 { ... }
}Provided Methods§
Sourcefn ctor(self, detail: impl Into<BattleDetail>, command: impl Into<Il2CppString>)
fn ctor(self, detail: impl Into<BattleDetail>, command: impl Into<Il2CppString>)
.ctor(crate::app::battledetail::BattleDetail, ::unity::Il2CppString) overload
Sourcefn get_detail(self) -> BattleDetail
fn get_detail(self) -> BattleDetail
get_Detail() overload
Sourcefn calculate(self, side: impl Into<BattleInfoSide>) -> f32
fn calculate(self, side: impl Into<BattleInfoSide>) -> f32
Calculate(crate::app::battleinfoside::BattleInfoSide) 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: IBattleDetail_DetailParam> IBattleDetail_DetailParamMethods for __T
Available on crate feature
app-battledetail only.