pub trait IFunc_12Methods<T0: ClassIdentity, T1: ClassIdentity, T2: ClassIdentity, T3: ClassIdentity, T4: ClassIdentity, T5: ClassIdentity, T6: ClassIdentity, T7: ClassIdentity, T8: ClassIdentity, T9: ClassIdentity, T10: ClassIdentity, T11: ClassIdentity>: ClassIdentity {
// Provided methods
fn ctor(self, object: Object, method: IntPtr)
where Self: Sized { ... }
fn invoke(
self,
arg1: T0,
arg2: T1,
arg3: T2,
arg4: T3,
arg5: T4,
arg6: T5,
arg7: T6,
arg8: T7,
arg9: T8,
arg10: T9,
arg11: T10,
) -> T11
where Self: Sized { ... }
}Provided Methods§
fn ctor(self, object: Object, method: IntPtr)where
Self: Sized,
fn invoke(
self,
arg1: T0,
arg2: T1,
arg3: T2,
arg4: T3,
arg5: T4,
arg6: T5,
arg7: T6,
arg8: T7,
arg9: T8,
arg10: T9,
arg11: T10,
) -> T11where
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.