WIP show notification

This commit is contained in:
Ian Douglas Scott 2021-09-09 07:38:18 -07:00
parent 17df83e611
commit cc8da887e6
3 changed files with 35 additions and 19 deletions

View file

@ -214,12 +214,12 @@ impl NotificationId {
#[derive(Debug)]
#[allow(dead_code)]
pub struct Notification {
id: NotificationId,
app_name: String,
app_icon: String, // decode?
summary: String,
body: String,
actions: Vec<String>, // enum?
pub id: NotificationId,
pub app_name: String,
pub app_icon: String, // decode?
pub summary: String,
pub body: String,
pub actions: Vec<String>, // enum?
hints: Hints,
}