We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b7d904f + 5088b69 commit 352ad27Copy full SHA for 352ad27
src/lib.rs
@@ -70,6 +70,6 @@ pub type Error = http_types::Error;
70
#[async_trait]
71
impl HttpClient for Box<dyn HttpClient> {
72
async fn send(&self, req: Request) -> Result<Response, Error> {
73
- self.send(req).await
+ self.as_ref().send(req).await
74
}
75
0 commit comments