pub trait IEventSequence_MapEventStatckMethods: IEventSequence_MapEventStatck {
// Provided methods
fn ctor(self, inspector: impl Into<MapInspector>) { ... }
fn ctor_2(
self,
stack: impl Into<Stack_1<MapInspector>>,
unit: impl Into<Unit>,
) { ... }
fn on_create(self) { ... }
fn on_tick(self) { ... }
fn on_dispose(self) { ... }
}Provided Methods§
Sourcefn ctor(self, inspector: impl Into<MapInspector>)
fn ctor(self, inspector: impl Into<MapInspector>)
.ctor(crate::app::mapinspector::MapInspector) overload
Sourcefn ctor_2(self, stack: impl Into<Stack_1<MapInspector>>, unit: impl Into<Unit>)
fn ctor_2(self, stack: impl Into<Stack_1<MapInspector>>, unit: impl Into<Unit>)
.ctor(crate::system::collections::generic::stack_1::Stack_1<crate::app::mapinspector::MapInspector>, crate::app::unit::Unit) overload
Sourcefn on_dispose(self)
fn on_dispose(self)
OnDispose() 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: IEventSequence_MapEventStatck> IEventSequence_MapEventStatckMethods for __T
Available on crate feature
app-eventsequence only.