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?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…