pub trait IInvokableCall_3Methods<T0: ClassIdentity, T1: ClassIdentity, T2: ClassIdentity>: ClassIdentity {
// Provided methods
fn add_delegate(self, value: UnityAction_3<T0, T1, T2>)
where Self: Sized { ... }
fn remove_delegate(self, value: UnityAction_3<T0, T1, T2>)
where Self: Sized { ... }
fn ctor(self, target: Object, the_function: MethodInfo)
where Self: Sized { ... }
fn ctor_2(self, action: UnityAction_3<T0, T1, T2>)
where Self: Sized { ... }
fn invoke(self, args: Array<Object>)
where Self: Sized { ... }
fn invoke_2(self, args0: T0, args1: T1, args2: T2)
where Self: Sized { ... }
fn find(self, target_obj: Object, method: MethodInfo) -> bool
where Self: Sized { ... }
}Provided Methods§
fn add_delegate(self, value: UnityAction_3<T0, T1, T2>)where
Self: Sized,
fn remove_delegate(self, value: UnityAction_3<T0, T1, T2>)where
Self: Sized,
fn ctor(self, target: Object, the_function: MethodInfo)where
Self: Sized,
fn ctor_2(self, action: UnityAction_3<T0, T1, T2>)where
Self: Sized,
fn invoke(self, args: Array<Object>)where
Self: Sized,
fn invoke_2(self, args0: T0, args1: T1, args2: T2)where
Self: Sized,
fn find(self, target_obj: Object, method: MethodInfo) -> boolwhere
Self: Sized,
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.