Struct JoinedRoom
#[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,
}
api
and (crate features 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: RoomSummary
Information about the room which clients may need to correctly render it to users.
unread_notifications: UnreadNotificationsCount
Counts 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: Timeline
The timeline of messages and state changes in the room.
state: State
Updates 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: RoomAccountData
The private data that this user has attached to this room.
ephemeral: Ephemeral
The ephemeral events in the room that aren’t recorded in the timeline or state of the room.
Implementations§
§impl JoinedRoom
impl JoinedRoom
pub fn new() -> JoinedRoom
pub fn new() -> JoinedRoom
Creates an empty JoinedRoom
.
Trait Implementations§
§impl Clone for JoinedRoom
impl Clone for JoinedRoom
§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§impl Debug for JoinedRoom
impl Debug for JoinedRoom
§impl Default for JoinedRoom
impl Default for JoinedRoom
§fn default() -> JoinedRoom
fn default() -> JoinedRoom
§impl<'de> Deserialize<'de> for JoinedRoom
impl<'de> Deserialize<'de> for JoinedRoom
§fn deserialize<__D>(
__deserializer: __D,
) -> Result<JoinedRoom, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<JoinedRoom, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
§impl Serialize for JoinedRoom
impl Serialize for JoinedRoom
§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Auto Trait Implementations§
impl Freeze for JoinedRoom
impl RefUnwindSafe for JoinedRoom
impl Send for JoinedRoom
impl Sync for JoinedRoom
impl Unpin for JoinedRoom
impl UnwindSafe for JoinedRoom
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> CompatExt for T
impl<T> CompatExt for T
Source§impl<T> FutureExt for T
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
Source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
Source§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
Source§fn consume_handle(handle: Handle) -> Arc<T>
fn consume_handle(handle: Handle) -> Arc<T>
Arc<>
Source§impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
Source§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more