[][src]Trait ignore::ParallelVisitorBuilder

pub trait ParallelVisitorBuilder<'s> {
    fn build(&mut self) -> Box<dyn ParallelVisitor + '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 for WalkParallel.

Loading content...

Implementations on Foreign Types

impl<'a, 's, P: ParallelVisitorBuilder<'s>> ParallelVisitorBuilder<'s> for &'a mut P[src]

Loading content...

Implementors

Loading content...