pub trait ParApply5<P1, P2, P3, P4, P5> {
// Required method
fn par_apply<F>(self, function: F)
where F: Fn(P1, P2, P3, P4, P5) + Sync + Send;
}
Expand description
The par_apply
method for Zip
.
This is a shorthand for using .into_par_iter().for_each()
on
Zip
.
Required 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.