wayle-notification 0.1.4

Desktop notification service with popup management
Documentation
1
2
3
4
5
6
7
use crate::{core::notification::Notification, types::ClosedReason};

#[derive(Clone)]
pub(crate) enum NotificationEvent {
    Add(Box<Notification>),
    Remove(u32, ClosedReason),
}