Struct ruma_client_api::r0::account::register::Response [−][src]
pub struct Response {
pub access_token: Option<String>,
pub user_id: UserId,
pub device_id: Option<DeviceIdBox>,
}Expand description
Data in the response from the register API endpoint.
Fields
access_token: Option<String>An access token for the account.
This access token can then be used to authorize other requests.
user_id: UserIdThe fully-qualified Matrix ID that has been registered.
device_id: Option<DeviceIdBox>ID of the registered device.
Will be the same as the corresponding parameter in the request, if one was specified.
Implementations
Trait Implementations
type EndpointError = UiaaResponse
type EndpointError = UiaaResponseA type capturing the expected error conditions the server can return.
fn try_from_http_response<T: AsRef<[u8]>>(
response: Response<T>
) -> Result<Self, FromHttpResponseError<UiaaResponse>>
fn try_from_http_response<T: AsRef<[u8]>>(
response: Response<T>
) -> Result<Self, FromHttpResponseError<UiaaResponse>>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 Responseimpl UnwindSafe for ResponseBlanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more