Struct matrix_sdk_crypto::store::IdentityChanges
source · pub struct IdentityChanges {
pub new: Vec<ReadOnlyUserIdentities>,
pub changed: Vec<ReadOnlyUserIdentities>,
pub unchanged: Vec<ReadOnlyUserIdentities>,
}
Expand description
This struct is used to remember whether an identity has undergone a change or remains the same as the one we already know about.
When the homeserver informs us of a potential change in a user’s identity or
device during a /sync
response, it triggers a /keys/query
request from
our side. In response to this query, the server provides a comprehensive
snapshot of all the user’s devices and identities.
Our responsibility is to discern whether a device or identity is new, changed, or unchanged.
Fields§
§new: Vec<ReadOnlyUserIdentities>
§changed: Vec<ReadOnlyUserIdentities>
§unchanged: Vec<ReadOnlyUserIdentities>
Trait Implementations§
source§impl Clone for IdentityChanges
impl Clone for IdentityChanges
source§fn clone(&self) -> IdentityChanges
fn clone(&self) -> IdentityChanges
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 IdentityChanges
impl Debug for IdentityChanges
source§impl Default for IdentityChanges
impl Default for IdentityChanges
source§fn default() -> IdentityChanges
fn default() -> IdentityChanges
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for IdentityChanges
impl Send for IdentityChanges
impl Sync for IdentityChanges
impl Unpin for IdentityChanges
impl UnwindSafe for IdentityChanges
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