doc_consts

get doc comments on fields as runtime constants

```rust

[derive(DocConsts)]

struct Test { /// doc comment /// with indentation field: (), /// another doc comment field2: (), }

[test]

fn itworks() { asserteq!("doc comment\n with indentation", Test::getdocs().field); asserteq!("another doc comment", Test::get_docs().field2); } ```