[][src]Trait ignore::ParallelVisitor

pub trait ParallelVisitor: Send {
    fn visit(&mut self, entry: Result<DirEntry, Error>) -> WalkState;
}

Receives files and directories for the current thread.

Setup for the traversal can be implemented as part of ParallelVisitorBuilder::build. Teardown when traversal finishes can be implemented by implementing the Drop trait on your traversal type.

Required methods

fn visit(&mut self, entry: Result<DirEntry, Error>) -> WalkState

Receives files and directories for the current thread. This is called once for every directory entry visited by traversal.

Loading content...

Implementors

Loading content...