pub trait IBattleGrowMethods: IBattleGrow {
// Provided methods
fn ctor(
self,
calculator: impl Into<BattleCalculator>,
is_talk: impl Into<bool>,
) { ... }
fn gain_exp(self) { ... }
}Provided Methods§
Sourcefn ctor(self, calculator: impl Into<BattleCalculator>, is_talk: impl Into<bool>)
fn ctor(self, calculator: impl Into<BattleCalculator>, is_talk: impl Into<bool>)
.ctor(crate::app::battlecalculator::BattleCalculator, bool) 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: IBattleGrow> IBattleGrowMethods for __T
Available on crate feature
app-battlegrow only.