How to generate documentation for private items

痞子三分冷 提交于 2019-12-22 05:14:50

问题


I have a project with:

main.rs
module_1/mod.rs
module_2/mod.rs
module_2/module_3/mod.rs

when I run cargo doc, I have just documentation for main.rs, not for modules.

In my main.rs I have:

mod module_1;
mod module_2;

fn main() {
...
}

I have tried documenting modules using /// or //!.

I can't find in rustdoc's help how do that.

Somebody can explain me?


回答1:


This is because those modules are private, and the default behavior is to document public members only.

As of Rust 1.29.0, cargo doc supports --document-private-items, to document private items.

Before 1.29, rustdoc already supported the flag --document-private-items, which means you could generate documentation for your project using cargo rustdoc -- --document-private-items. But cargo doc did not support the flag.



来源:https://stackoverflow.com/questions/52136276/how-to-generate-documentation-for-private-items

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!