pub trait IMapSequenceDanceMethods: IMapSequenceDance {
// Provided methods
fn ctor(self) { ... }
fn calculate(self) { ... }
fn branch(self) { ... }
fn simple_dance(self) -> IEnumerator { ... }
fn combat_dance(self) { ... }
fn commit(self) { ... }
fn grow(self) { ... }
fn god_exp(self) { ... }
}Provided Methods§
Sourcefn simple_dance(self) -> IEnumerator
fn simple_dance(self) -> IEnumerator
SimpleDance() overload
Sourcefn combat_dance(self)
fn combat_dance(self)
CombatDance() 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: IMapSequenceDance> IMapSequenceDanceMethods for __T
Available on crate feature
app-mapsequencedance only.