synpad 0.1.0

A full-featured Matrix chat client built with Dioxus
1
2
3
4
5
6
7
8
9
10
11
use matrix_sdk::ruma::OwnedUserId;

/// Current user's profile information.
#[derive(Clone, Debug, Default)]
pub struct UserProfile {
    pub user_id: Option<OwnedUserId>,
    pub display_name: Option<String>,
    pub avatar_url: Option<String>,
    pub email: Option<String>,
    pub status_message: Option<String>,
}