Struct matrix_sdk_base::ruma::api::client::discovery::discover_homeserver::Response
#[non_exhaustive]pub struct Response {
pub homeserver: HomeserverInfo,
pub identity_server: Option<IdentityServerInfo>,
pub sliding_sync_proxy: Option<SlidingSyncProxyInfo>,
}
Available on crate feature
api
and (crate features client
or server
) only.Expand description
Response type for the client_well_known
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.homeserver: HomeserverInfo
Information about the homeserver to connect to.
identity_server: Option<IdentityServerInfo>
Information about the identity server to connect to.
sliding_sync_proxy: Option<SlidingSyncProxyInfo>
Available on crate feature
unstable-msc3575
only.Information about the homeserver’s trusted proxy to use for sliding sync development.
Implementations§
§impl Response
impl Response
pub fn new(homeserver: HomeserverInfo) -> Response
pub fn new(homeserver: HomeserverInfo) -> Response
Creates a new Response
with the given HomeserverInfo
.
Trait Implementations§
§impl IncomingResponse for Response
Available on crate feature client
only.
impl IncomingResponse for Response
Available on crate feature
client
only.§type EndpointError = Error
type EndpointError = Error
A type capturing the expected error conditions the server can return.
§fn try_from_http_response<T>(
response: Response<T>
) -> Result<Response, FromHttpResponseError<Error>>
fn try_from_http_response<T>( response: Response<T> ) -> Result<Response, FromHttpResponseError<Error>>
Tries to convert the given
http::Response
into this response type.Auto Trait Implementations§
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