pub trait Notify { type Error: Error; // Required method fn notify(&self) -> Result<(), Self::Error>; }