Trait ruma::client::http_client::HttpClient[][src]

pub trait HttpClient: Sync {
    type RequestBody: Default + BufMut + Send;
    type ResponseBody: AsRef<[u8]>;
    type Error: Send + Unpin;
    fn send_http_request<'life0, 'async_trait>(
        &'life0 self,
        req: Request<Self::RequestBody>
    ) -> Pin<Box<dyn Future<Output = Result<Response<Self::ResponseBody>, Self::Error>> + 'async_trait + Send, Global>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; }
This is supported on crate feature client only.
Expand description

An HTTP client that can be used to send requests to a Matrix homeserver.

Associated Types

The type to use for try_into_http_request.

The type to use for try_from_http_response.

The error type for the send_request function.

Required methods

Send an http::Request to get back an http::Response.

Implementations on Foreign Types

Implementors