pub trait IMapMind_CommandStackMethods: IMapMind_CommandStack {
// Provided methods
fn peek(self) -> MapMind_Type { ... }
fn push(
self,
type: impl Into<MapMind_Type>,
unit: impl Into<Unit>,
link: impl Into<Unit>,
) { ... }
fn pop(self) -> bool { ... }
fn decide(self) { ... }
fn clear(self) { ... }
fn get_exist(self) -> bool { ... }
fn try_add_achieve_engage(
self,
type: impl Into<MapMind_Type>,
unit: impl Into<Unit>,
) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn peek(self) -> MapMind_Type
fn peek(self) -> MapMind_Type
Peek() overload
Sourcefn push(
self,
type: impl Into<MapMind_Type>,
unit: impl Into<Unit>,
link: impl Into<Unit>,
)
fn push( self, type: impl Into<MapMind_Type>, unit: impl Into<Unit>, link: impl Into<Unit>, )
Push(crate::app::mapmind::MapMind_Type, crate::app::unit::Unit, crate::app::unit::Unit) overload
Sourcefn try_add_achieve_engage(
self,
type: impl Into<MapMind_Type>,
unit: impl Into<Unit>,
)
fn try_add_achieve_engage( self, type: impl Into<MapMind_Type>, unit: impl Into<Unit>, )
TryAddAchieveEngage(crate::app::mapmind::MapMind_Type, crate::app::unit::Unit) 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: IMapMind_CommandStack> IMapMind_CommandStackMethods for __T
Available on crate feature
app-mapmind only.