1个不稳定版本
0.1.0 | 2023年8月2日 |
---|
#18 在 #comment
在 doc_consts 中使用
5KB
91 行
doc_consts
以运行时常量形式获取字段文档注释
#[derive(DocConsts)]
struct Test {
/// doc comment
/// with indentation
field: (),
/// another doc comment
field2: (),
}
#[test]
fn it_works() {
assert_eq!("doc comment\n with indentation", Test::get_docs().field);
assert_eq!("another doc comment", Test::get_docs().field2);
}
依赖项
~315–760KB
~18K SLoC