#docs #fields #constants #comments #macro

macro doc_consts_derive

以运行时常量形式获取字段文档注释

1个不稳定版本

0.1.0 2023年8月2日

#18#comment


doc_consts 中使用

MIT/Apache

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