Skip to content

Commit 3cb28de

Browse files
authored
Rollup merge of #89164 - camelid:show-type-layout-docs, r=jyn514
Document `--show-type-layout` in the rustdoc book I also made a few small, related changes as separate commits. r? `@jyn514`
2 parents 91af000 + fcb837b commit 3cb28de

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

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

+17-1
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,22 @@ some consideration for their stability, and names that end in a number). Giving
209209
`rustdoc` will disable this sorting and instead make it print the items in the order they appear in
210210
the source.
211211

212+
### `--show-type-layout`: add a section to each type's docs describing its memory layout
213+
214+
Using this flag looks like this:
215+
216+
```bash
217+
$ rustdoc src/lib.rs -Z unstable-options --show-type-layout
218+
```
219+
220+
When this flag is passed, rustdoc will add a "Layout" section at the bottom of
221+
each type's docs page that includes a summary of the type's memory layout as
222+
computed by rustc. For example, rustdoc will show the size in bytes that a value
223+
of that type will take in memory.
224+
225+
Note that most layout information is **completely unstable** and may even differ
226+
between compilations.
227+
212228
### `--resource-suffix`: modifying the name of CSS/JavaScript in crate docs
213229

214230
Using this flag looks like this:
@@ -333,7 +349,7 @@ Some methodology notes about what rustdoc counts in this metric:
333349
Public items that are not documented can be seen with the built-in `missing_docs` lint. Private
334350
items that are not documented can be seen with Clippy's `missing_docs_in_private_items` lint.
335351

336-
## `-w`/`--output-format`: output format
352+
### `-w`/`--output-format`: output format
337353

338354
When using
339355
[`--show-coverage`](https://doc.rust-lang.org/nightly/rustdoc/unstable-features.html#--show-coverage-get-statistics-about-code-documentation-coverage),

src/librustdoc/html/render/print_item.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1663,7 +1663,7 @@ fn document_type_layout(w: &mut Buffer, cx: &Context<'_>, ty_def_id: DefId) {
16631663
writeln!(
16641664
w,
16651665
"<div class=\"warning\"><p><strong>Note:</strong> Most layout information is \
1666-
completely unstable and may be different between compiler versions and platforms. \
1666+
<strong>completely unstable</strong> and may even differ between compilations. \
16671667
The only exception is types with certain <code>repr(...)</code> attributes. \
16681668
Please see the Rust Reference’s \
16691669
<a href=\"https://doc.rust-lang.org/reference/type-layout.html\">“Type Layout”</a> \

0 commit comments

Comments
 (0)