pub trait IMapAction_ProcBounceMethods: IMapAction_ProcBounce {
// Provided methods
fn ctor(
self,
actor: impl Into<UnitActor>,
dx: impl Into<i32>,
dz: impl Into<i32>,
distance: impl Into<i32>,
) { ... }
fn get_speed(self) -> f32 { ... }
fn on_tick(self) { ... }
}Provided Methods§
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: IMapAction_ProcBounce> IMapAction_ProcBounceMethods for __T
Available on crate feature
app-mapaction only.