pub trait AlertHandler {
// Required method
fn handle_alert(&self, alert: Alert) -> Result<()>;
}Expand description
Alert handling trait
pub trait AlertHandler {
// Required method
fn handle_alert(&self, alert: Alert) -> Result<()>;
}Alert handling trait