pub trait WalkNotifier {
// Required methods
fn notify_entered_directory(&self, dir: &FileInfo);
fn notify_candidate_for_removal(&self, candidate: RemovalCandidate);
fn notify_fail_to_scan(&self, e: &FileInfo, report: Report);
fn notify_walk_finish(&self);
}Required Methods§
fn notify_entered_directory(&self, dir: &FileInfo)
fn notify_candidate_for_removal(&self, candidate: RemovalCandidate)
fn notify_fail_to_scan(&self, e: &FileInfo, report: Report)
fn notify_walk_finish(&self)
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".