pub trait Notifier {
// Required method
fn notify(
&self,
notification: &Notification,
bus: &NotificationBus,
) -> Result<(), Error>;
}pub trait Notifier {
// Required method
fn notify(
&self,
notification: &Notification,
bus: &NotificationBus,
) -> Result<(), Error>;
}