2个不稳定版本
0.2.0 | 2023年8月2日 |
---|---|
0.1.0 | 2023年8月2日 |
#1027 in 过程宏
被wspick使用
7KB
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);
}
依赖
~255–680KB
~16K SLoC