#[non_exhaustive]pub struct Response {
pub user_id: OwnedUserId,
pub stream_id: UInt,
pub devices: Vec<UserDevice>,
pub master_key: Option<Raw<CrossSigningKey>>,
pub self_signing_key: Option<Raw<CrossSigningKey>>,
}
Expand description
Response type for the get_devices
endpoint.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.user_id: OwnedUserId
The user ID devices were requested for.
stream_id: UInt
A unique ID for a given user_id which describes the version of the returned device list.
This is matched with the stream_id
field in m.device_list_update
EDUs in order to
incrementally update the returned device_list.
devices: Vec<UserDevice>
The user’s devices.
master_key: Option<Raw<CrossSigningKey>>
The user’s master key.
self_signing_key: Option<Raw<CrossSigningKey>>
The users’s self-signing key.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Response
impl RefUnwindSafe for Response
impl Send for Response
impl Sync for Response
impl Unpin for Response
impl UnwindSafe for Response
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