pub trait EntityWalkerVisitor<'tu> {
    // Required method
    fn visit_entity(&mut self, entity: Entity<'tu>) -> WalkAction;

    // Provided method
    fn wants_file(&mut self, path: &Path) -> bool { ... }
}

Required Methods§

source

fn visit_entity(&mut self, entity: Entity<'tu>) -> WalkAction

Provided Methods§

source

fn wants_file(&mut self, path: &Path) -> bool

Implementors§