pub trait IAreaInspectorMethods: IAreaInspector {
// Provided methods
fn ctor(self, args: impl Into<Array<DynValue>>) { ... }
fn is_eanble(
self,
x: impl Into<i32>,
z: impl Into<i32>,
force: impl Into<i32>,
) -> bool { ... }
fn get_x1(self) -> i32 { ... }
fn get_z1(self) -> i32 { ... }
fn get_x2(self) -> i32 { ... }
fn get_z2(self) -> i32 { ... }
fn get_color(self) -> Color { ... }
}Provided Methods§
Sourcefn ctor(self, args: impl Into<Array<DynValue>>)
fn ctor(self, args: impl Into<Array<DynValue>>)
.ctor(::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: IAreaInspector> IAreaInspectorMethods for __T
Available on crate feature
app-areainspector only.