pub trait ParallelVisitorBuilder<'s> {
    fn build(&mut self) -> Box<dyn ParallelVisitor + 's>;
}
Expand description

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§

Create per-thread ParallelVisitors for WalkParallel.

Implementations on Foreign Types§

Implementors§