synpad 0.1.0

A full-featured Matrix chat client built with Dioxus
1
2
3
4
5
6
7
8
9
10
/// Global notification state.
#[derive(Clone, Debug, Default)]
pub struct NotificationState {
    /// Total unread messages across all rooms
    pub total_unread: u64,
    /// Total highlight (mention) count across all rooms
    pub total_highlights: u64,
    /// Pending invites count
    pub pending_invites: u64,
}