Skip to main content

IInvokableCall_1Methods

Trait IInvokableCall_1Methods 

Source
pub trait IInvokableCall_1Methods<T0: ClassIdentity>: ClassIdentity {
    // Provided methods
    fn add_delegate(self, value: UnityAction_1<T0>)
       where Self: Sized { ... }
    fn remove_delegate(self, value: UnityAction_1<T0>)
       where Self: Sized { ... }
    fn ctor(self, target: Object, the_function: MethodInfo)
       where Self: Sized { ... }
    fn ctor_2(self, action: UnityAction_1<T0>)
       where Self: Sized { ... }
    fn invoke(self, args: Array<Object>)
       where Self: Sized { ... }
    fn invoke_2(self, args0: T0)
       where Self: Sized { ... }
    fn find(self, target_obj: Object, method: MethodInfo) -> bool
       where Self: Sized { ... }
}

Provided Methods§

Source

fn add_delegate(self, value: UnityAction_1<T0>)
where Self: Sized,

Source

fn remove_delegate(self, value: UnityAction_1<T0>)
where Self: Sized,

Source

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

Source

fn ctor_2(self, action: UnityAction_1<T0>)
where Self: Sized,

Source

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

Source

fn invoke_2(self, args0: T0)
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§