pub trait IncomingResponse: Sized {
type EndpointError: EndpointError;
// Required method
fn try_from_http_response<T: AsRef<[u8]>>(
response: Response<T>,
) -> Result<Self, FromHttpResponseError<Self::EndpointError>>;
}
Available on crate feature
api
only.Expand description
A response type for a Matrix API endpoint, used for receiving responses.
Required Associated Types§
Sourcetype EndpointError: EndpointError
type EndpointError: EndpointError
A type capturing the expected error conditions the server can return.
Required Methods§
Sourcefn try_from_http_response<T: AsRef<[u8]>>(
response: Response<T>,
) -> Result<Self, FromHttpResponseError<Self::EndpointError>>
fn try_from_http_response<T: AsRef<[u8]>>( response: Response<T>, ) -> Result<Self, FromHttpResponseError<Self::EndpointError>>
Tries to convert the given http::Response
into this response type.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.