pub struct EventResponse {
pub next_batch: String,
pub rooms: Rooms,
pub presence: Presence,
pub account_data: GlobalAccountData,
pub to_device: ToDevice,
pub device_lists: DeviceLists,
pub device_one_time_keys_count: BTreeMap<DeviceKeyAlgorithm, UInt>,
pub device_unused_fallback_key_types: Option<Vec<DeviceKeyAlgorithm>>,
}
Fields§
§next_batch: String
The batch token to supply in the since
param of the next /sync
request.
rooms: Rooms
Updates to rooms.
presence: Presence
Updates to the presence status of other users.
account_data: GlobalAccountData
The global private data created by this user.
to_device: ToDevice
Messages sent directly between devices.
device_lists: DeviceLists
Information on E2E device updates.
Only present on an incremental sync.
device_one_time_keys_count: BTreeMap<DeviceKeyAlgorithm, UInt>
For each key algorithm, the number of unclaimed one-time keys currently held on the server for a device.
device_unused_fallback_key_types: Option<Vec<DeviceKeyAlgorithm>>
For each key algorithm, the number of unclaimed one-time keys currently held on the server for a device.
The presence of this field indicates that the server supports fallback keys.
Trait Implementations§
Source§impl Clone for EventResponse
impl Clone for EventResponse
Source§fn clone(&self) -> EventResponse
fn clone(&self) -> EventResponse
Returns a duplicate 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 EventResponse
impl Debug for EventResponse
Source§impl Default for EventResponse
impl Default for EventResponse
Source§fn default() -> EventResponse
fn default() -> EventResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EventResponse
impl<'de> Deserialize<'de> for EventResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for EventResponse
impl RefUnwindSafe for EventResponse
impl Send for EventResponse
impl Sync for EventResponse
impl Unpin for EventResponse
impl UnwindSafe for EventResponse
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