pub trait IMapAction_ProcBounce: IMapAction_ProcUnitAction {
// Provided methods
fn m_impacted(self) -> bool { ... }
fn set_m_impacted(self, value: bool) { ... }
fn m_hit(self) -> Vector3 { ... }
fn set_m_hit(self, value: Vector3) { ... }
}Provided Methods§
fn m_impacted(self) -> bool
fn set_m_impacted(self, value: bool)
fn m_hit(self) -> Vector3
fn set_m_hit(self, value: Vector3)
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.