pub trait ICombatStagingMethods: ICombatStaging {
// Provided methods
fn attach(self, side: impl Into<i32>, chr: impl Into<Character>) { ... }
fn ctor(self) { ... }
}Provided Methods§
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: ICombatStaging> ICombatStagingMethods for __T
Available on crate feature
combat-combatstaging only.