Skip to main content

ICombineCallbackMethods

Trait ICombineCallbackMethods 

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

Source

fn ctor(self, object: impl Into<Object>, method: impl Into<IntPtr>)

.ctor(crate::system::object::Object, ::unity::IntPtr) overload

Source

fn invoke( self, position: impl Into<Vec3>, data: impl Into<Array<Object>>, weights: impl Into<Array<f32>>, ) -> Object

Invoke(crate::unity_engine::experimental::rendering::universal::lib_tess_dot_net::vec3::Vec3, ::unity::Array<crate::system::object::Object>, ::unity::Array<f32>) overload

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§

Source§

impl<__T: ICombineCallback> ICombineCallbackMethods for __T

Available on crate feature unity_engine-experimental-rendering-universal-lib_tess_dot_net-combinecallback only.