pub trait AlertHandler: Send + Sync { // Required method fn handle(&self, alert: &Alert); }
Alert handler trait
Handle an alert