Struct ruma_client_api::r0::keys::get_keys::Response [−][src]
pub struct Response {
pub failures: BTreeMap<String, JsonValue>,
pub device_keys: BTreeMap<UserId, BTreeMap<DeviceIdBox, DeviceKeys>>,
pub master_keys: BTreeMap<UserId, CrossSigningKey>,
pub self_signing_keys: BTreeMap<UserId, CrossSigningKey>,
pub user_signing_keys: BTreeMap<UserId, CrossSigningKey>,
}Expand description
Data in the response from the get_keys API endpoint.
Fields
failures: BTreeMap<String, JsonValue>If any remote homeservers could not be reached, they are recorded here. The names of the properties are the names of the unreachable servers.
device_keys: BTreeMap<UserId, BTreeMap<DeviceIdBox, DeviceKeys>>Information on the queried devices.
master_keys: BTreeMap<UserId, CrossSigningKey>unstable-pre-spec only.Information on the master cross-signing keys of the queried users.
self_signing_keys: BTreeMap<UserId, CrossSigningKey>unstable-pre-spec only.Information on the self-signing keys of the queried users.
user_signing_keys: BTreeMap<UserId, CrossSigningKey>unstable-pre-spec only.Information on the user-signing keys of the queried users.
Implementations
Trait Implementations
type EndpointError = Error
type EndpointError = Error
A type capturing the expected error conditions the server can return.
fn try_from_http_response<T: AsRef<[u8]>>(
response: Response<T>
) -> Result<Self, FromHttpResponseError<Error>>
fn try_from_http_response<T: AsRef<[u8]>>(
response: Response<T>
) -> Result<Self, FromHttpResponseError<Error>>
Tries to convert the given http::Response into this response type.
Tries to convert this response into an http::Response. Read more
Auto Trait Implementations
impl RefUnwindSafe for Response
impl UnwindSafe for Response
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more