pub trait ITurnEffectMethods: ITurnEffect {
// Provided methods
fn ctor(self) { ... }
fn get_can_wait_skip(self) -> bool { ... }
fn search(self) { ... }
fn next_unit(self) { ... }
fn damage(self, damage: impl Into<i32>) { ... }
fn heal(self, heal: impl Into<i32>) { ... }
fn execute(self) -> IEnumerator { ... }
fn try_wait_time(self, time: impl Into<f32>) { ... }
}Provided Methods§
Sourcefn get_can_wait_skip(self) -> bool
fn get_can_wait_skip(self) -> bool
get_CanWaitSkip() overload
Sourcefn execute(self) -> IEnumerator
fn execute(self) -> IEnumerator
Execute() overload
Sourcefn try_wait_time(self, time: impl Into<f32>)
fn try_wait_time(self, time: impl Into<f32>)
TryWaitTime(f32) 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: ITurnEffect> ITurnEffectMethods for __T
Available on crate feature
app-turneffect only.