Trait ruma_api::IncomingResponse[][src]

pub trait IncomingResponse: Sized {
    type EndpointError: EndpointError;
    fn try_from_http_response<T: AsRef<[u8]>>(
        response: Response<T>
    ) -> Result<Self, FromHttpResponseError<Self::EndpointError>>; }
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