pub trait IMapAiThread: IObject {
// Provided methods
fn m_lock(self) -> IlInstance { ... }
fn set_m_lock(self, value: IlInstance) { ... }
fn m_is_first_run(self) -> bool { ... }
fn set_m_is_first_run(self, value: bool) { ... }
fn m_status(self) -> MapAiThread_Status { ... }
fn set_m_status(self, value: MapAiThread_Status) { ... }
}Provided Methods§
fn m_lock(self) -> IlInstance
fn set_m_lock(self, value: IlInstance)
fn m_is_first_run(self) -> bool
fn set_m_is_first_run(self, value: bool)
fn m_status(self) -> MapAiThread_Status
fn set_m_status(self, value: MapAiThread_Status)
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.