[−][src]Struct ruma_client_api::r0::keys::DeviceKeys
Identity keys for a device.
Fields
user_id: UserIdThe ID of the user the device belongs to. Must match the user ID used when logging in.
device_id: DeviceIdThe ID of the device these keys belong to. Must match the device ID used when logging in.
algorithms: Vec<Algorithm>The encryption algorithms supported by this device.
keys: BTreeMap<AlgorithmAndDeviceId, String>Public identity keys.
signatures: BTreeMap<UserId, BTreeMap<AlgorithmAndDeviceId, String>>Signatures for the device key object.
unsigned: Option<UnsignedDeviceInfo>Additional data added to the device key information by intermediate servers, and not covered by the signatures.
Trait Implementations
impl Clone for DeviceKeys[src]
fn clone(&self) -> DeviceKeys[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for DeviceKeys[src]
impl<'de> Deserialize<'de> for DeviceKeys[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl Serialize for DeviceKeys[src]
Auto Trait Implementations
impl RefUnwindSafe for DeviceKeys
impl Send for DeviceKeys
impl Sync for DeviceKeys
impl Unpin for DeviceKeys
impl UnwindSafe for DeviceKeys
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,