pub trait IBattleCalculator_HitSkillMethods: IBattleCalculator_HitSkill {
// Provided methods
fn on_enter(self) { ... }
fn on_exit(self) { ... }
fn clear(self) { ... }
fn get_sort_key(self) -> i32 { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_sort_key(self) -> i32
fn get_sort_key(self) -> i32
get_SortKey() 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: IBattleCalculator_HitSkill> IBattleCalculator_HitSkillMethods for __T
Available on crate feature
app-battlecalculator only.