Skip to content

Commit 65943f7

Browse files
authored
Rollup merge of rust-lang#82690 - jyn514:remove-pass-docs, r=Manishearth
Update rustdoc documentation - Remove most of the information about passes. Passes are deprecated. - Add `--document-private-items`; it was missing before. - Update `--output-format json`; it was very outdated. - Note that `--input-format` is deprecated. - Move deprecated options to the very end. Closes rust-lang#82675. r? ```@Manishearth```
2 parents a482925 + dbdaa12 commit 65943f7

File tree

4 files changed

+67
-132
lines changed

4 files changed

+67
-132
lines changed

src/doc/rustdoc/src/SUMMARY.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
- [Documentation tests](documentation-tests.md)
99
- [Linking to items by name](linking-to-items-by-name.md)
1010
- [Lints](lints.md)
11-
- [Passes](passes.md)
1211
- [Advanced features](advanced-features.md)
1312
- [Unstable features](unstable-features.md)
13+
- [Passes](passes.md)
1414
- [References](references.md)

src/doc/rustdoc/src/command-line-arguments.md

+37-49
Original file line numberDiff line numberDiff line change
@@ -57,23 +57,6 @@ release: 1.17.0
5757
LLVM version: 3.9
5858
```
5959

60-
## `-r`/`--input-format`: input format
61-
62-
This flag is currently ignored; the idea is that `rustdoc` would support various
63-
input formats, and you could specify them via this flag.
64-
65-
Rustdoc only supports Rust source code and Markdown input formats. If the
66-
file ends in `.md` or `.markdown`, `rustdoc` treats it as a Markdown file.
67-
Otherwise, it assumes that the input file is Rust.
68-
69-
70-
## `-w`/`--output-format`: output format
71-
72-
This flag is currently ignored; the idea is that `rustdoc` would support
73-
various output formats, and you could specify them via this flag.
74-
75-
Rustdoc only supports HTML output, and so this flag is redundant today.
76-
7760
## `-o`/`--output`: output path
7861

7962
Using this flag looks like this:
@@ -100,6 +83,25 @@ By default, `rustdoc` assumes that the name of your crate is the same name
10083
as the `.rs` file. `--crate-name` lets you override this assumption with
10184
whatever name you choose.
10285

86+
## `--document-private-items`: Show items that are not public
87+
88+
Using this flag looks like this:
89+
90+
```bash
91+
$ rustdoc src/lib.rs --document-private-items
92+
```
93+
94+
By default, `rustdoc` only documents items that are publicly reachable.
95+
96+
```rust
97+
pub fn public() {} // this item is public and will documented
98+
mod private { // this item is private and will not be documented
99+
pub fn unreachable() {} // this item is public, but unreachable, so it will not be documented
100+
}
101+
```
102+
103+
`--document-private-items` documents all items, even if they're not public.
104+
103105
## `-L`/`--library-path`: where to look for dependencies
104106

105107
Using this flag looks like this:
@@ -166,38 +168,6 @@ affect that.
166168
The arguments to this flag are the same as those for the `-C` flag on rustc. Run `rustc -C help` to
167169
get the full list.
168170

169-
## `--passes`: add more rustdoc passes
170-
171-
Using this flag looks like this:
172-
173-
```bash
174-
$ rustdoc --passes list
175-
$ rustdoc src/lib.rs --passes strip-priv-imports
176-
```
177-
178-
An argument of "list" will print a list of possible "rustdoc passes", and other
179-
arguments will be the name of which passes to run in addition to the defaults.
180-
181-
For more details on passes, see [the chapter on them](passes.md).
182-
183-
See also `--no-defaults`.
184-
185-
## `--no-defaults`: don't run default passes
186-
187-
Using this flag looks like this:
188-
189-
```bash
190-
$ rustdoc src/lib.rs --no-defaults
191-
```
192-
193-
By default, `rustdoc` will run several passes over your code. This
194-
removes those defaults, allowing you to use `--passes` to specify
195-
exactly which passes you want.
196-
197-
For more details on passes, see [the chapter on them](passes.md).
198-
199-
See also `--passes`.
200-
201171
## `--test`: run code examples as tests
202172

203173
Using this flag looks like this:
@@ -429,3 +399,21 @@ If you specify `@path` on the command-line, then it will open `path` and read
429399
command line options from it. These options are one per line; a blank line indicates
430400
an empty option. The file can use Unix or Windows style line endings, and must be
431401
encoded as UTF-8.
402+
403+
## `--passes`: add more rustdoc passes
404+
405+
This flag is **deprecated**.
406+
For more details on passes, see [the chapter on them](passes.md).
407+
408+
## `--no-defaults`: don't run default passes
409+
410+
This flag is **deprecated**.
411+
For more details on passes, see [the chapter on them](passes.md).
412+
413+
## `-r`/`--input-format`: input format
414+
415+
This flag is **deprecated** and **has no effect**.
416+
417+
Rustdoc only supports Rust source code and Markdown input formats. If the
418+
file ends in `.md` or `.markdown`, `rustdoc` treats it as a Markdown file.
419+
Otherwise, it assumes that the input file is Rust.

src/doc/rustdoc/src/passes.md

+5-82
Original file line numberDiff line numberDiff line change
@@ -3,86 +3,9 @@
33
Rustdoc has a concept called "passes". These are transformations that
44
`rustdoc` runs on your documentation before producing its final output.
55

6-
In addition to the passes below, check out the docs for these flags:
6+
Customizing passes is **deprecated**. The available passes are not considered stable and may
7+
change in any release.
78

8-
* [`--passes`](command-line-arguments.md#--passes-add-more-rustdoc-passes)
9-
* [`--no-defaults`](command-line-arguments.md#--no-defaults-dont-run-default-passes)
10-
11-
## Default passes
12-
13-
By default, rustdoc will run some passes, namely:
14-
15-
* `strip-hidden`
16-
* `strip-private`
17-
* `collapse-docs`
18-
* `unindent-comments`
19-
20-
However, `strip-private` implies `strip-priv-imports`, and so effectively,
21-
all passes are run by default.
22-
23-
## `strip-hidden`
24-
25-
This pass implements the `#[doc(hidden)]` attribute. When this pass runs, it
26-
checks each item, and if it is annotated with this attribute, it removes it
27-
from `rustdoc`'s output.
28-
29-
Without this pass, these items will remain in the output.
30-
31-
## `unindent-comments`
32-
33-
When you write a doc comment like this:
34-
35-
```rust,no_run
36-
/// This is a documentation comment.
37-
# fn f() {}
38-
```
39-
40-
There's a space between the `///` and that `T`. That spacing isn't intended
41-
to be a part of the output; it's there for humans, to help separate the doc
42-
comment syntax from the text of the comment. This pass is what removes that
43-
space.
44-
45-
The exact rules are left under-specified so that we can fix issues that we find.
46-
47-
Without this pass, the exact number of spaces is preserved.
48-
49-
## `collapse-docs`
50-
51-
With this pass, multiple `#[doc]` attributes are converted into one single
52-
documentation string.
53-
54-
For example:
55-
56-
```rust,no_run
57-
#[doc = "This is the first line."]
58-
#[doc = "This is the second line."]
59-
# fn f() {}
60-
```
61-
62-
Gets collapsed into a single doc string of
63-
64-
```text
65-
This is the first line.
66-
This is the second line.
67-
```
68-
69-
## `strip-private`
70-
71-
This removes documentation for any non-public items, so for example:
72-
73-
```rust,no_run
74-
/// These are private docs.
75-
struct Private;
76-
77-
/// These are public docs.
78-
pub struct Public;
79-
```
80-
81-
This pass removes the docs for `Private`, since they're not public.
82-
83-
This pass implies `strip-priv-imports`.
84-
85-
## `strip-priv-imports`
86-
87-
This is the same as `strip-private`, but for `extern crate` and `use`
88-
statements instead of items.
9+
In the past the most common use case for customizing passes was to omit the `strip-private` pass.
10+
You can do this more easily, and without risk of the pass being changed, by passing
11+
[`--document-private-items`](./unstable-features.md#--document-private-items).

src/doc/rustdoc/src/unstable-features.md

+24
Original file line numberDiff line numberDiff line change
@@ -340,6 +340,30 @@ Some methodology notes about what rustdoc counts in this metric:
340340
Public items that are not documented can be seen with the built-in `missing_docs` lint. Private
341341
items that are not documented can be seen with Clippy's `missing_docs_in_private_items` lint.
342342

343+
## `-w`/`--output-format`: output format
344+
345+
When using
346+
[`--show-coverage`](https://doc.rust-lang.org/nightly/rustdoc/unstable-features.html#--show-coverage-get-statistics-about-code-documentation-coverage),
347+
passing `--output-format json` will display the coverage information in JSON format. For example,
348+
here is the JSON for a file with one documented item and one undocumented item:
349+
350+
```rust
351+
/// This item has documentation
352+
pub fn foo() {}
353+
354+
pub fn no_documentation() {}
355+
```
356+
357+
```json
358+
{"no_std.rs":{"total":3,"with_docs":1,"total_examples":3,"with_examples":0}}
359+
```
360+
361+
Note that the third item is the crate root, which in this case is undocumented.
362+
363+
When not using `--show-coverage`, `--output-format json` emits documentation in the experimental
364+
[JSON format](https://github.com/rust-lang/rfcs/pull/2963). `--output-format html` has no effect,
365+
and is also accepted on stable toolchains.
366+
343367
### `--enable-per-target-ignores`: allow `ignore-foo` style filters for doctests
344368

345369
Using this flag looks like this:

0 commit comments

Comments
 (0)