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 7c5ba50 commit c21a50cCopy full SHA for c21a50c
.code-samples.meilisearch.yaml
@@ -59,16 +59,12 @@ search_1: |-
59
.execute()
60
.await
61
.unwrap();
62
-get_update_md: |-
63
- You can get the status of a `Progress` instance:
64
- ```rust
+get_update_1: |-
+ // You can get the status of a `Progress` object:
65
let status: Status = progress.get_status().await.unwrap();
66
- ```
67
68
- Or you can use index to get an update status using its `update_id`:
69
+ // Or you can use index to get an update status using its `update_id`:
70
let status: Status = index.get_update(1).await.unwrap();
71
72
get_all_updates_1: |-
73
let status: Vec<ProgressStatus> = index.get_all_updates().await.unwrap();
74
get_keys_1: |-
0 commit comments