pub trait AsyncHttpClient {
    type Error;

    // Required method
    fn get<T: DeserializeOwned>(
        &self,
        req: HttpRequest
    ) -> impl Future<Output = Result<T, Self::Error>> + Send;
}

Required Associated Types§

Required Methods§

source

fn get<T: DeserializeOwned>( &self, req: HttpRequest ) -> impl Future<Output = Result<T, Self::Error>> + Send

Object Safety§

This trait is not object safe.

Implementors§