Skip to content

Commit f3d9d47

Browse files
authored
Remove unlinked quick reference pages
1 parent 1e0782b commit f3d9d47

File tree

1 file changed

+2
-26
lines changed

1 file changed

+2
-26
lines changed

source/quick-reference.txt

Lines changed: 2 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ a corresponding async and sync runtime example.
1616

1717
..
1818
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
1920

2021
.. list-table::
2122
:header-rows: 1
@@ -27,7 +28,6 @@ a corresponding async and sync runtime example.
2728
* - | **Find a Document**
2829
|
2930
| `API Documentation <https://docs.rs/mongodb/latest/mongodb/struct.Collection.html#method.find_one>`__
30-
| Usage Example
3131
| :ref:`Fundamentals Guide <rust-retrieve-guide>`
3232

3333
- *Async Runtime*
@@ -49,7 +49,6 @@ a corresponding async and sync runtime example.
4949
* - | **Find Multiple Documents**
5050
|
5151
| `API Documentation <https://docs.rs/mongodb/latest/mongodb/struct.Collection.html#method.find>`__
52-
| Usage Example
5352
| :ref:`Fundamentals Guide <rust-retrieve-guide>`
5453

5554
- *Async Runtime*
@@ -71,7 +70,6 @@ a corresponding async and sync runtime example.
7170
* - | **Insert a Document**
7271
|
7372
| `API Documentation <https://docs.rs/mongodb/latest/mongodb/struct.Collection.html#method.insert_one>`__
74-
| Usage Example
7573
| :ref:`Fundamentals Guide <rust-insert-guide>`
7674

7775
- *Async Runtime*
@@ -93,7 +91,6 @@ a corresponding async and sync runtime example.
9391
* - | **Insert Multiple Documents**
9492
|
9593
| `API Documentation <https://docs.rs/mongodb/latest/mongodb/struct.Collection.html#method.insert_many>`__
96-
| Usage Example
9794
| :ref:`Fundamentals Guide <rust-insert-guide>`
9895

9996
- *Async Runtime*
@@ -115,7 +112,6 @@ a corresponding async and sync runtime example.
115112
* - | **Update a Document**
116113
|
117114
| `API Documentation <https://docs.rs/mongodb/latest/mongodb/struct.Collection.html#method.update_one>`__
118-
| Usage Example
119115
| :ref:`Fundamentals Guide <rust-change-guide>`
120116

121117
- *Async Runtime*
@@ -137,7 +133,6 @@ a corresponding async and sync runtime example.
137133
* - | **Update Multiple Documents**
138134
|
139135
| `API Documentation <https://docs.rs/mongodb/latest/mongodb/struct.Collection.html#method.update_many>`__
140-
| Usage Example
141136
| :ref:`Fundamentals Guide <rust-change-guide>`
142137

143138
- *Async Runtime*
@@ -159,7 +154,6 @@ a corresponding async and sync runtime example.
159154
* - | **Replace a Document**
160155
|
161156
| `API Documentation <https://docs.rs/mongodb/latest/mongodb/struct.Collection.html#method.replace_one>`__
162-
| Usage Example
163157
| :ref:`Fundamentals Guide <rust-change-guide>`
164158

165159
- *Async Runtime*
@@ -181,7 +175,6 @@ a corresponding async and sync runtime example.
181175
* - | **Delete a Document**
182176
|
183177
| `API Documentation <https://docs.rs/mongodb/latest/mongodb/struct.Collection.html#method.delete_one>`__
184-
| Usage Example
185178
| :ref:`Fundamentals Guide <rust-delete-guide>`
186179

187180
- *Async Runtime*
@@ -203,7 +196,6 @@ a corresponding async and sync runtime example.
203196
* - | **Delete Multiple Documents**
204197
|
205198
| `API Documentation <https://docs.rs/mongodb/latest/mongodb/struct.Collection.html#method.delete_many>`__
206-
| Usage Example
207199
| :ref:`Fundamentals Guide <rust-delete-guide>`
208200

209201
- *Async Runtime*
@@ -225,7 +217,6 @@ a corresponding async and sync runtime example.
225217
* - | **Access Data from a Cursor Iteratively**
226218
|
227219
| `API Documentation <https://docs.rs/mongodb/latest/mongodb/struct.Cursor.html>`__
228-
| Usage Example
229220
| :ref:`Fundamentals Guide <rust-cursor-guide>`
230221

231222
- *Async Runtime*
@@ -247,7 +238,6 @@ a corresponding async and sync runtime example.
247238
* - | **Access Data from a Cursor as an Array**
248239
|
249240
| `API Documentation <https://docs.rs/futures/latest/futures/stream/trait.TryStreamExt.html#method.try_collect>`__
250-
| Usage Example
251241
| :ref:`Fundamentals Guide <rust-cursor-guide>`
252242

253243
- *Async Runtime*
@@ -269,8 +259,6 @@ a corresponding async and sync runtime example.
269259
* - | **Count Documents**
270260
|
271261
| `API Documentation <https://docs.rs/mongodb/latest/mongodb/struct.Collection.html#method.count_documents>`__
272-
| Usage Example
273-
| Fundamentals Guide
274262

275263
- *Async Runtime*
276264

@@ -291,8 +279,6 @@ a corresponding async and sync runtime example.
291279
* - | **List Distinct Values of a Field**
292280
|
293281
| `API Documentation <https://docs.rs/mongodb/latest/mongodb/struct.Collection.html#method.distinct>`__
294-
| Usage Example
295-
| Fundamentals Guide
296282

297283
- *Async Runtime*
298284

@@ -313,8 +299,6 @@ a corresponding async and sync runtime example.
313299
* - | **Limit the Number of Documents Retrieved**
314300
|
315301
| `API Documentation <https://docs.rs/mongodb/latest/mongodb/options/struct.FindOptions.html#structfield.limit>`__
316-
| Usage Example
317-
| Fundamentals Guide
318302

319303
- *Async Runtime*
320304

@@ -335,8 +319,6 @@ a corresponding async and sync runtime example.
335319
* - | **Skip Retrieved Documents**
336320
|
337321
| `API Documentation <https://docs.rs/mongodb/latest/mongodb/options/struct.FindOptions.html#structfield.skip>`__
338-
| Usage Example
339-
| Fundamentals Guide
340322

341323
- *Async Runtime*
342324

@@ -357,8 +339,6 @@ a corresponding async and sync runtime example.
357339
* - | **Sort the Documents When Retrieving Them**
358340
|
359341
| `API Documentation <https://docs.rs/mongodb/latest/mongodb/options/struct.FindOptions.html#structfield.sort>`__
360-
| Usage Example
361-
| Fundamentals Guide
362342

363343
- *Async Runtime*
364344

@@ -379,8 +359,6 @@ a corresponding async and sync runtime example.
379359
* - | **Project Document Fields When Retrieving Them**
380360
|
381361
| `API Documentation <https://docs.rs/mongodb/latest/mongodb/options/struct.FindOptions.html#structfield.projection>`__
382-
| Usage Example
383-
| Fundamentals Guide
384362

385363
- *Async Runtime*
386364

@@ -401,8 +379,6 @@ a corresponding async and sync runtime example.
401379
* - | **Create an Index**
402380
|
403381
| `API Documentation <https://docs.rs/mongodb/latest/mongodb/struct.Collection.html#method.create_index>`__
404-
| Usage Example
405-
| Fundamentals Guide
406382

407383
- *Async Runtime*
408384

@@ -418,4 +394,4 @@ a corresponding async and sync runtime example.
418394
:language: rust
419395
:dedent:
420396
:start-after: start-index
421-
:end-before: end-index
397+
:end-before: end-index

0 commit comments

Comments
 (0)