@@ -16,6 +16,7 @@ a corresponding async and sync runtime example.
16
16
17
17
..
18
18
TODO: For more information about runtimes, see <link to the runtime fundamentals guide>
19
+ TODO: Add links to the Usage Example pages and remaining Fundamentals pages once they are created
19
20
20
21
.. list-table::
21
22
:header-rows: 1
@@ -27,7 +28,6 @@ a corresponding async and sync runtime example.
27
28
* - | **Find a Document**
28
29
|
29
30
| `API Documentation <https://docs.rs/mongodb/latest/mongodb/struct.Collection.html#method.find_one>`__
30
- | Usage Example
31
31
| :ref:`Fundamentals Guide <rust-retrieve-guide>`
32
32
33
33
- *Async Runtime*
@@ -49,7 +49,6 @@ a corresponding async and sync runtime example.
49
49
* - | **Find Multiple Documents**
50
50
|
51
51
| `API Documentation <https://docs.rs/mongodb/latest/mongodb/struct.Collection.html#method.find>`__
52
- | Usage Example
53
52
| :ref:`Fundamentals Guide <rust-retrieve-guide>`
54
53
55
54
- *Async Runtime*
@@ -71,7 +70,6 @@ a corresponding async and sync runtime example.
71
70
* - | **Insert a Document**
72
71
|
73
72
| `API Documentation <https://docs.rs/mongodb/latest/mongodb/struct.Collection.html#method.insert_one>`__
74
- | Usage Example
75
73
| :ref:`Fundamentals Guide <rust-insert-guide>`
76
74
77
75
- *Async Runtime*
@@ -93,7 +91,6 @@ a corresponding async and sync runtime example.
93
91
* - | **Insert Multiple Documents**
94
92
|
95
93
| `API Documentation <https://docs.rs/mongodb/latest/mongodb/struct.Collection.html#method.insert_many>`__
96
- | Usage Example
97
94
| :ref:`Fundamentals Guide <rust-insert-guide>`
98
95
99
96
- *Async Runtime*
@@ -115,7 +112,6 @@ a corresponding async and sync runtime example.
115
112
* - | **Update a Document**
116
113
|
117
114
| `API Documentation <https://docs.rs/mongodb/latest/mongodb/struct.Collection.html#method.update_one>`__
118
- | Usage Example
119
115
| :ref:`Fundamentals Guide <rust-change-guide>`
120
116
121
117
- *Async Runtime*
@@ -137,7 +133,6 @@ a corresponding async and sync runtime example.
137
133
* - | **Update Multiple Documents**
138
134
|
139
135
| `API Documentation <https://docs.rs/mongodb/latest/mongodb/struct.Collection.html#method.update_many>`__
140
- | Usage Example
141
136
| :ref:`Fundamentals Guide <rust-change-guide>`
142
137
143
138
- *Async Runtime*
@@ -159,7 +154,6 @@ a corresponding async and sync runtime example.
159
154
* - | **Replace a Document**
160
155
|
161
156
| `API Documentation <https://docs.rs/mongodb/latest/mongodb/struct.Collection.html#method.replace_one>`__
162
- | Usage Example
163
157
| :ref:`Fundamentals Guide <rust-change-guide>`
164
158
165
159
- *Async Runtime*
@@ -181,7 +175,6 @@ a corresponding async and sync runtime example.
181
175
* - | **Delete a Document**
182
176
|
183
177
| `API Documentation <https://docs.rs/mongodb/latest/mongodb/struct.Collection.html#method.delete_one>`__
184
- | Usage Example
185
178
| :ref:`Fundamentals Guide <rust-delete-guide>`
186
179
187
180
- *Async Runtime*
@@ -203,7 +196,6 @@ a corresponding async and sync runtime example.
203
196
* - | **Delete Multiple Documents**
204
197
|
205
198
| `API Documentation <https://docs.rs/mongodb/latest/mongodb/struct.Collection.html#method.delete_many>`__
206
- | Usage Example
207
199
| :ref:`Fundamentals Guide <rust-delete-guide>`
208
200
209
201
- *Async Runtime*
@@ -225,7 +217,6 @@ a corresponding async and sync runtime example.
225
217
* - | **Access Data from a Cursor Iteratively**
226
218
|
227
219
| `API Documentation <https://docs.rs/mongodb/latest/mongodb/struct.Cursor.html>`__
228
- | Usage Example
229
220
| :ref:`Fundamentals Guide <rust-cursor-guide>`
230
221
231
222
- *Async Runtime*
@@ -247,7 +238,6 @@ a corresponding async and sync runtime example.
247
238
* - | **Access Data from a Cursor as an Array**
248
239
|
249
240
| `API Documentation <https://docs.rs/futures/latest/futures/stream/trait.TryStreamExt.html#method.try_collect>`__
250
- | Usage Example
251
241
| :ref:`Fundamentals Guide <rust-cursor-guide>`
252
242
253
243
- *Async Runtime*
@@ -269,8 +259,6 @@ a corresponding async and sync runtime example.
269
259
* - | **Count Documents**
270
260
|
271
261
| `API Documentation <https://docs.rs/mongodb/latest/mongodb/struct.Collection.html#method.count_documents>`__
272
- | Usage Example
273
- | Fundamentals Guide
274
262
275
263
- *Async Runtime*
276
264
@@ -291,8 +279,6 @@ a corresponding async and sync runtime example.
291
279
* - | **List Distinct Values of a Field**
292
280
|
293
281
| `API Documentation <https://docs.rs/mongodb/latest/mongodb/struct.Collection.html#method.distinct>`__
294
- | Usage Example
295
- | Fundamentals Guide
296
282
297
283
- *Async Runtime*
298
284
@@ -313,8 +299,6 @@ a corresponding async and sync runtime example.
313
299
* - | **Limit the Number of Documents Retrieved**
314
300
|
315
301
| `API Documentation <https://docs.rs/mongodb/latest/mongodb/options/struct.FindOptions.html#structfield.limit>`__
316
- | Usage Example
317
- | Fundamentals Guide
318
302
319
303
- *Async Runtime*
320
304
@@ -335,8 +319,6 @@ a corresponding async and sync runtime example.
335
319
* - | **Skip Retrieved Documents**
336
320
|
337
321
| `API Documentation <https://docs.rs/mongodb/latest/mongodb/options/struct.FindOptions.html#structfield.skip>`__
338
- | Usage Example
339
- | Fundamentals Guide
340
322
341
323
- *Async Runtime*
342
324
@@ -357,8 +339,6 @@ a corresponding async and sync runtime example.
357
339
* - | **Sort the Documents When Retrieving Them**
358
340
|
359
341
| `API Documentation <https://docs.rs/mongodb/latest/mongodb/options/struct.FindOptions.html#structfield.sort>`__
360
- | Usage Example
361
- | Fundamentals Guide
362
342
363
343
- *Async Runtime*
364
344
@@ -379,8 +359,6 @@ a corresponding async and sync runtime example.
379
359
* - | **Project Document Fields When Retrieving Them**
380
360
|
381
361
| `API Documentation <https://docs.rs/mongodb/latest/mongodb/options/struct.FindOptions.html#structfield.projection>`__
382
- | Usage Example
383
- | Fundamentals Guide
384
362
385
363
- *Async Runtime*
386
364
@@ -401,8 +379,6 @@ a corresponding async and sync runtime example.
401
379
* - | **Create an Index**
402
380
|
403
381
| `API Documentation <https://docs.rs/mongodb/latest/mongodb/struct.Collection.html#method.create_index>`__
404
- | Usage Example
405
- | Fundamentals Guide
406
382
407
383
- *Async Runtime*
408
384
@@ -418,4 +394,4 @@ a corresponding async and sync runtime example.
418
394
:language: rust
419
395
:dedent:
420
396
:start-after: start-index
421
- :end-before: end-index
397
+ :end-before: end-index
0 commit comments