Closed
Description
Rustdoc currently does not label, mark, or otherwise separate private items to distinguish them from public items, when the --document-private-items
command-line argument is passed. The generated documentation hence can be confusing to the reader. I suggest enabling one or more of the below through rustdoc:
- Separate public and private items in the generated documentation
- Enable toggling the visibility of private items in the generated documentation.
- Label or mark private items to clearly distinguish them from public items.
This issue was prompted by rust-lang/docs.rs#304 (comment)