pub trait IMapSequenceCommandSkillMethods: IMapSequenceCommandSkill {
// Provided methods
fn ctor(
self,
action: impl Into<MapSequenceCommandSkill_Action>,
) -> MapSkill_Results { ... }
fn start(self) { ... }
fn wait_skip(self, signal: impl Into<UnitSignal>) { ... }
fn begin_signal(self) { ... }
fn end_signal(self) { ... }
fn impact(self) { ... }
fn commit(self) { ... }
}Provided Methods§
Sourcefn ctor(
self,
action: impl Into<MapSequenceCommandSkill_Action>,
) -> MapSkill_Results
fn ctor( self, action: impl Into<MapSequenceCommandSkill_Action>, ) -> MapSkill_Results
.ctor(*mutcrate::app::mapskill::MapSkill_Results, crate::app::mapsequencecommandskill::MapSequenceCommandSkill_Action) overload
Sourcefn wait_skip(self, signal: impl Into<UnitSignal>)
fn wait_skip(self, signal: impl Into<UnitSignal>)
WaitSkip(crate::app::unitsignal::UnitSignal) overload
Sourcefn begin_signal(self)
fn begin_signal(self)
BeginSignal() overload
Sourcefn end_signal(self)
fn end_signal(self)
EndSignal() 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: IMapSequenceCommandSkill> IMapSequenceCommandSkillMethods for __T
Available on crate feature
app-mapsequencecommandskill only.