pub trait IIJobParallelForTransformMethods: IIJobParallelForTransform {
// Provided method
fn execute(
self,
index: impl Into<i32>,
transform: impl Into<TransformAccess>,
) { ... }
}Provided Methods§
Sourcefn execute(self, index: impl Into<i32>, transform: impl Into<TransformAccess>)
fn execute(self, index: impl Into<i32>, transform: impl Into<TransformAccess>)
Execute(i32, crate::unity_engine::jobs::transformaccess::TransformAccess) 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§
impl<__T: IIJobParallelForTransform> IIJobParallelForTransformMethods for __T
Available on crate feature
unity_engine-jobs-ijobparallelfortransform only.