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.
1 parent b7d904f commit 5088b69Copy full SHA for 5088b69
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