You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Movie { id:5, title:String::from("Moana"), genres:vec!["Fantasy".to_string(), "Action".to_string()] },
125
126
Movie { id:6, title:String::from("Philadelphia"), genres:vec!["Drama".to_string()] },
126
127
], Some("id")).await.unwrap();
127
-
})}
128
+
}
128
129
```
129
130
130
131
With the `uid`, you can check the status (`enqueued`, `canceled`, `processing`, `succeeded` or `failed`) of your documents addition using the [task](https://www.meilisearch.com/docs/reference/api/tasks#get-task).
@@ -238,11 +239,11 @@ Json output:
238
239
}
239
240
```
240
241
241
-
#### Using users customized HttpClient <!-- omit in TOC -->
242
+
#### Customize the `HttpClient`<!-- omit in TOC -->
242
243
243
-
If you want to change the `HttpClient` you can incorporate using the `Client::new_with_client` method.
244
-
To use it, you need to implement the `HttpClient Trait`(`isahc` is used by default).
245
-
There are [using-reqwest-example](./examples/cli-app-with-reqwest) of using `reqwest`.
244
+
By default, the SDK uses [`reqwest`](https://docs.rs/reqwest/latest/reqwest/) to make http calls.
245
+
The SDK lets you customize the http client by implementing the `HttpClient` trait yourself and
246
+
initializing the `Client`with the `new_with_client` method.
246
247
247
248
## 🌐 Running in the Browser with WASM <!-- omit in TOC -->
0 commit comments