pub trait CleanerNotifier {
// Required methods
fn notify_removal_started(&self, candidate: &RemovalCandidate);
fn notify_removal_success(&self, candidate: RemovalCandidate);
fn notify_removal_failed(&self, candidate: RemovalCandidate, report: Report);
fn notify_removal_finish(&self);
}Required Methods§
fn notify_removal_started(&self, candidate: &RemovalCandidate)
fn notify_removal_success(&self, candidate: RemovalCandidate)
fn notify_removal_failed(&self, candidate: RemovalCandidate, report: Report)
fn notify_removal_finish(&self)
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".