pub trait IActionDisposerHolderMethods: IActionDisposerHolder {
// Provided methods
fn ctor(self, chr: impl Into<Character>, phase: impl Into<Phase>) { ... }
fn on_exit(self) { ... }
fn dispose(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: IActionDisposerHolder> IActionDisposerHolderMethods for __T
Available on crate feature
combat-actiondisposerholder only.