Skip to main content

IInvokableCall_3Methods

Trait IInvokableCall_3Methods 

Source
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§

Source

fn add_delegate(self, value: UnityAction_3<T0, T1, T2>)
where Self: Sized,

Source

fn remove_delegate(self, value: UnityAction_3<T0, T1, T2>)
where Self: Sized,

Source

fn ctor(self, target: Object, the_function: MethodInfo)
where Self: Sized,

Source

fn ctor_2(self, action: UnityAction_3<T0, T1, T2>)
where Self: Sized,

Source

fn invoke(self, args: Array<Object>)
where Self: Sized,

Source

fn invoke_2(self, args0: T0, args1: T1, args2: T2)
where Self: Sized,

Source

fn find(self, target_obj: Object, method: MethodInfo) -> bool
where 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.

Implementors§