Trait ruma::api::IncomingResponse[][src]

pub trait IncomingResponse {
    type EndpointError: EndpointError;
    fn try_from_http_response<T>(
        response: Response<T>
    ) -> Result<Self, FromHttpResponseError<Self::EndpointError>>
    where
        T: AsRef<[u8]>
; }
This is supported on crate feature api only.
Expand description

A response type for a Matrix API endpoint, used for receiving responses.

Associated Types

A type capturing the expected error conditions the server can return.

Required methods

Tries to convert the given http::Response into this response type.

Implementors