#[non_exhaustive]pub struct JoinedRoom {
pub summary: RoomSummary,
pub unread_notifications: UnreadNotificationsCount,
pub unread_thread_notifications: BTreeMap<OwnedEventId, UnreadNotificationsCount>,
pub timeline: Timeline,
pub state: State,
pub account_data: RoomAccountData,
pub ephemeral: Ephemeral,
pub unread_count: Option<UInt>,
}client or server only.Expand description
Updates to joined rooms.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.summary: RoomSummaryInformation about the room which clients may need to correctly render it to users.
unread_notifications: UnreadNotificationsCountCounts of unread notifications for this room.
If unread_thread_notifications was set to true in the RoomEventFilter, these
include only the unread notifications for the main timeline.
unread_thread_notifications: BTreeMap<OwnedEventId, UnreadNotificationsCount>Counts of unread notifications for threads in this room.
This is a map from thread root ID to unread notifications in the thread.
Only set if unread_thread_notifications was set to true in the RoomEventFilter.
timeline: TimelineThe timeline of messages and state changes in the room.
state: StateUpdates to the state, between the time indicated by the since parameter, and the
start of the timeline (or all state up to the start of the timeline, if
since is not given, or full_state is true).
account_data: RoomAccountDataThe private data that this user has attached to this room.
ephemeral: EphemeralThe ephemeral events in the room that aren’t recorded in the timeline or state of the room.
unread_count: Option<UInt>unstable-msc2654 only.The number of unread events since the latest read receipt.
This uses the unstable prefix in MSC2654.
Implementations§
Trait Implementations§
Source§impl Clone for JoinedRoom
impl Clone for JoinedRoom
Source§fn clone(&self) -> JoinedRoom
fn clone(&self) -> JoinedRoom
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more