pub trait WorkStealingArray<A, S, D>{
// Required method
fn work_stealing_map<F, B>(&self, f: F) -> CoreResult<Array<B, D>>
where B: Clone + Send + 'static,
F: Fn(&A) -> Result<B, CoreError> + Send + Sync + Clone + 'static;
}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.