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§

source

fn visit_mut_par<N>(&mut self, threshold: usize, nodes: &mut [N])where N: Send + Sync + VisitMutWith<Self>,

Implementors§

source§

impl<T> ParVisitMut for Twhere T: VisitMut + Parallel,