pub struct JoinedRoomUpdate {
pub unread_notifications: UnreadNotificationsCount,
pub timeline: Timeline,
pub state: State,
pub account_data: Vec<Raw<AnyRoomAccountDataEvent>>,
pub ephemeral: Vec<Raw<AnySyncEphemeralRoomEvent>>,
pub ambiguity_changes: BTreeMap<OwnedEventId, AmbiguityChange>,
}
Expand description
Updates to joined rooms.
Fields§
§unread_notifications: UnreadNotificationsCount
Counts of unread notifications for this room.
timeline: Timeline
The timeline of messages and state changes in the room.
state: State
Updates to the state.
If since
is missing or full_state
is true, the start point of the
update is the beginning of the timeline. Otherwise, the start point
is the time specified in since
.
If state_after
was used, the end point of the update is the end of the
timeline
. Otherwise, the end point of these updates is the start of
the timeline
, and to calculate room state we must scan the timeline
for state events as well as using this information in this property.
account_data: Vec<Raw<AnyRoomAccountDataEvent>>
The private data that this user has attached to this room.
ephemeral: Vec<Raw<AnySyncEphemeralRoomEvent>>
The ephemeral events in the room that aren’t recorded in the timeline or state of the room. e.g. typing.
ambiguity_changes: BTreeMap<OwnedEventId, AmbiguityChange>
Collection of ambiguity changes that room member events trigger.
This is a map of event ID of the m.room.member
event to the
details of the ambiguity change.
Trait Implementations§
Source§impl Clone for JoinedRoomUpdate
impl Clone for JoinedRoomUpdate
Source§fn clone(&self) -> JoinedRoomUpdate
fn clone(&self) -> JoinedRoomUpdate
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for JoinedRoomUpdate
Available on non-tarpaulin_include
only.
impl Debug for JoinedRoomUpdate
tarpaulin_include
only.Source§impl Default for JoinedRoomUpdate
impl Default for JoinedRoomUpdate
Source§fn default() -> JoinedRoomUpdate
fn default() -> JoinedRoomUpdate
Auto Trait Implementations§
impl Freeze for JoinedRoomUpdate
impl RefUnwindSafe for JoinedRoomUpdate
impl Send for JoinedRoomUpdate
impl Sync for JoinedRoomUpdate
impl Unpin for JoinedRoomUpdate
impl UnwindSafe for JoinedRoomUpdate
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, 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