Struct matrix_sdk_base::sync::SyncResponse
source · pub struct SyncResponse {
pub rooms: Rooms,
pub presence: Vec<Raw<PresenceEvent>>,
pub account_data: Vec<Raw<AnyGlobalAccountDataEvent>>,
pub to_device: Vec<Raw<AnyToDeviceEvent>>,
pub ambiguity_changes: AmbiguityChanges,
pub notifications: BTreeMap<OwnedRoomId, Vec<Notification>>,
}
Expand description
Internal representation of a /sync
response.
This type is intended to be applicable regardless of the endpoint used for syncing.
Fields§
§rooms: Rooms
Updates to rooms.
presence: Vec<Raw<PresenceEvent>>
Updates to the presence status of other users.
account_data: Vec<Raw<AnyGlobalAccountDataEvent>>
The global private data created by this user.
to_device: Vec<Raw<AnyToDeviceEvent>>
Messages sent directly between devices.
ambiguity_changes: AmbiguityChanges
Collection of ambiguity changes that room member events trigger.
notifications: BTreeMap<OwnedRoomId, Vec<Notification>>
New notifications per room.
Trait Implementations§
source§impl Clone for SyncResponse
impl Clone for SyncResponse
source§fn clone(&self) -> SyncResponse
fn clone(&self) -> SyncResponse
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 SyncResponse
Available on non-tarpaulin_include
only.
impl Debug for SyncResponse
Available on non-
tarpaulin_include
only.source§impl Default for SyncResponse
impl Default for SyncResponse
source§fn default() -> SyncResponse
fn default() -> SyncResponse
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for SyncResponse
impl Send for SyncResponse
impl Sync for SyncResponse
impl Unpin for SyncResponse
impl UnwindSafe for SyncResponse
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