pub trait Notification: View {
    // Required method
    fn should_dismiss_notification_on_event(
        &self,
        event: &<Self as Entity>::Event
    ) -> bool;
}

Required Methods§

source

fn should_dismiss_notification_on_event( &self, event: &<Self as Entity>::Event ) -> bool

Implementors§