rustdoc 允许您通过在每行上方包含文档注释来记录结构字段和枚举变体:
enum Choices {
/// The first choice.
First,
/// The second choice.
Second,
}
struct Person {
/// The person's name.
name: String,
/// The person's age.
age: u8,
}
这些将在 rustdoc 生成的 HTML 中以很好的格式显示出来。但是,我还没有看到任何方法可以为函数参数制作类似的格式良好的文档。是否有一种“官方”的方式来记录它们,或者您只需要在函数的主要文档部分中自由地描述它们吗?