pub trait IMapInspector: IScriptUtil {
// Provided methods
fn m_kind(self) -> MapInspector_Kind { ... }
fn set_m_kind(self, value: MapInspector_Kind) { ... }
fn m_condition(self) -> DynValue { ... }
fn set_m_condition(self, value: DynValue) { ... }
fn m_function(self) -> DynValue { ... }
fn set_m_function(self, value: DynValue) { ... }
fn m_args(self) -> Array<DynValue> { ... }
fn set_m_args(self, value: Array<DynValue>) { ... }
}Provided Methods§
fn m_kind(self) -> MapInspector_Kind
fn set_m_kind(self, value: MapInspector_Kind)
fn m_condition(self) -> DynValue
fn set_m_condition(self, value: DynValue)
fn m_function(self) -> DynValue
fn set_m_function(self, value: DynValue)
fn m_args(self) -> Array<DynValue>
fn set_m_args(self, value: Array<DynValue>)
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.