pub trait ICombineCallbackMethods: ICombineCallback {
// Provided methods
fn ctor(self, object: impl Into<Object>, method: impl Into<IntPtr>) { ... }
fn invoke(
self,
position: impl Into<Vec3>,
data: impl Into<Array<Object>>,
weights: impl Into<Array<f32>>,
) -> Object { ... }
}Provided Methods§
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: ICombineCallback> ICombineCallbackMethods for __T
Available on crate feature
unity_engine-experimental-rendering-universal-lib_tess_dot_net-combinecallback only.