Trait ParallelVisitorBuilder
pub trait ParallelVisitorBuilder<'s>
A builder for constructing a visitor when using WalkParallel::visit.
The builder will be called for each thread started by WalkParallel. The
visitor returned from each builder is then called for every directory
entry.
Required Methods
fn build(&mut self) -> Box<dyn ParallelVisitor + 's>Create per-thread
ParallelVisitors forWalkParallel.
Implementors
impl<'a, 's, P: ParallelVisitorBuilder<'s>> ParallelVisitorBuilder<'s> for &'a mut P