pub trait ITalkInspectorMethods: ITalkInspector {
// Provided methods
fn ctor(self, args: impl Into<Array<DynValue>>) { ... }
fn is_terminated(
self,
arg1: impl Into<i32>,
arg2: impl Into<i32>,
arg3: impl Into<i32>,
arg4: impl Into<i32>,
) -> bool { ... }
}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
Sourcefn is_terminated(
self,
arg1: impl Into<i32>,
arg2: impl Into<i32>,
arg3: impl Into<i32>,
arg4: impl Into<i32>,
) -> bool
fn is_terminated( self, arg1: impl Into<i32>, arg2: impl Into<i32>, arg3: impl Into<i32>, arg4: impl Into<i32>, ) -> bool
IsTerminated(i32, i32, i32, i32) 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: ITalkInspector> ITalkInspectorMethods for __T
Available on crate feature
app-talkinspector only.