pub trait ParVisitMut: VisitMut + Parallel {
// Required method
fn visit_mut_par<N>(&mut self, threshold: usize, nodes: &mut [N])
where N: Send + Sync + VisitMutWith<Self>;
}
Required Methods§
fn visit_mut_par<N>(&mut self, threshold: usize, nodes: &mut [N])
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.