Trait swc_ecma_transforms_base::perf::ParVisitMut

source ·
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>,

Object Safety§

This trait is not object safe.

Implementors§

source§

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