pub trait ReuseNotification {
// Required methods
fn reuse(&mut self) -> Result<NotificationHandle>;
fn reuse_with(&mut self, identifier: &str) -> Result<NotificationHandle>;
}
Expand description
Allows to reuse notifications created via notfy-rust
.