pub trait IHelpProcMethods: IHelpProc {
// Provided methods
fn begin(self) { ... }
fn tick(self) { ... }
fn commit_map_panel_target(self) { ... }
fn end(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn commit_map_panel_target(self)
fn commit_map_panel_target(self)
CommitMapPanelTarget() 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: IHelpProc> IHelpProcMethods for __T
Available on crate feature
app-helpproc only.