pub trait IAIThink_ActionFuncMethods: IAIThink_ActionFunc {
// Provided methods
fn ctor(self, object: impl Into<Object>, method: impl Into<IntPtr>) { ... }
fn invoke(
self,
command: impl Into<i32>,
v0: impl Into<AIValue>,
v1: impl Into<AIValue>,
) -> AIThink_Result { ... }
}Provided Methods§
Sourcefn ctor(self, object: impl Into<Object>, method: impl Into<IntPtr>)
fn ctor(self, object: impl Into<Object>, method: impl Into<IntPtr>)
.ctor(crate::system::object::Object, ::unity::IntPtr) overload
Sourcefn invoke(
self,
command: impl Into<i32>,
v0: impl Into<AIValue>,
v1: impl Into<AIValue>,
) -> AIThink_Result
fn invoke( self, command: impl Into<i32>, v0: impl Into<AIValue>, v1: impl Into<AIValue>, ) -> AIThink_Result
Invoke(i32, crate::app::aivalue::AIValue, crate::app::aivalue::AIValue) 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: IAIThink_ActionFunc> IAIThink_ActionFuncMethods for __T
Available on crate feature
app-aithink only.