We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8a3796 commit d145cc0Copy full SHA for d145cc0
lib/wasi/src/http/mod.rs
@@ -15,6 +15,7 @@ pub fn default_http_client() -> Option<impl HttpClient + Send + Sync + 'static>
15
// Note: We need something to use with turbofish otherwise returning
16
// a plain None will complain about not being able to infer the "T"
17
// in Option<T>
18
+ #[derive(Debug)]
19
enum Unimplemented {}
20
impl HttpClient for Unimplemented {
21
fn request(&self, request: HttpRequest) -> futures::future::BoxFuture<'_, Result<HttpResponse, anyhow::Error>> {
0 commit comments