Struct ruma_client_api::r0::session::login::Response [−][src]
pub struct Response {
pub user_id: UserId,
pub access_token: String,
pub home_server: Option<ServerNameBox>,
pub device_id: DeviceIdBox,
pub well_known: Option<DiscoveryInfo>,
}Expand description
Data in the response from the login API endpoint.
Fields
user_id: UserIdThe fully-qualified Matrix ID that has been registered.
access_token: StringAn access token for the account.
home_server: Option<ServerNameBox>The hostname of the homeserver on which the account has been registered.
Deprecated: Clients should instead use the user_id.server_name()
method if they require it.
device_id: DeviceIdBoxID of the logged-in device.
Will be the same as the corresponding parameter in the request, if one was specified.
well_known: Option<DiscoveryInfo>Client configuration provided by the server.
If present, clients SHOULD use the provided object to reconfigure themselves.
Implementations
Creates a new Response with the given user ID, access token and device ID.
Trait Implementations
type EndpointError = Error
type EndpointError = ErrorA 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 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