Struct matrix_sdk_base::sync::JoinedRoomUpdate
source · pub struct JoinedRoomUpdate {
pub unread_notifications: UnreadNotificationsCount,
pub timeline: Timeline,
pub state: Vec<Raw<AnySyncStateEvent>>,
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: Vec<Raw<AnySyncStateEvent>>
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: 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
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for JoinedRoomUpdate
impl Debug for JoinedRoomUpdate
source§impl Default for JoinedRoomUpdate
impl Default for JoinedRoomUpdate
source§fn default() -> JoinedRoomUpdate
fn default() -> JoinedRoomUpdate
Returns the “default value” for a type. Read more
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
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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,
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§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>
Converts
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>
Converts
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