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,6 +239,12 @@ Json output:
238
239
}
239
240
```
240
241
242
+
#### Customize the `HttpClient`<!-- omit in TOC -->
243
+
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.
247
+
241
248
## 🌐 Running in the Browser with WASM <!-- omit in TOC -->
0 commit comments