pub trait IActionTalk: IActionBase {
// Provided methods
fn is_end(self) -> bool { ... }
fn set_is_end(self, value: bool) { ... }
fn calc(self) -> BattleCalculator { ... }
fn set_calc(self, value: BattleCalculator) { ... }
}Provided Methods§
fn is_end(self) -> bool
fn set_is_end(self, value: bool)
fn calc(self) -> BattleCalculator
fn set_calc(self, value: BattleCalculator)
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.