pub trait IUnitInspectorMethods: IUnitInspector {
// Provided methods
fn ctor(
self,
kind: impl Into<MapInspector_Kind>,
args: impl Into<Array<DynValue>>,
) { ... }
fn is_eanble(self, person: impl Into<i32>, force: impl Into<i32>) -> bool { ... }
}Provided Methods§
Sourcefn ctor(
self,
kind: impl Into<MapInspector_Kind>,
args: impl Into<Array<DynValue>>,
)
fn ctor( self, kind: impl Into<MapInspector_Kind>, args: impl Into<Array<DynValue>>, )
.ctor(crate::app::mapinspector::MapInspector_Kind, ::unity::Array<crate::moon_sharp::interpreter::dynvalue::DynValue>) 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: IUnitInspector> IUnitInspectorMethods for __T
Available on crate feature
app-unitinspector only.