documented

Derive macro for accessing your type's documentation at runtime

Quick start

```rust use documented::Documented;

fn main() { /// Nice. /// Multiple single-line doc comments are supported. /// /** Multi-line doc comments are supported too. Each line of the multi-line block is individually trimmed. Note the lack of spaces in front of this line. */ #[doc = "Attribute-style documentation is supported too."] #[derive(Documented)] struct BornIn69;

let doc_str = "Nice.

Multiple single-line doc comments are supported.

Multi-line doc comments are supported too. Each line of the multi-line block is individually trimmed. Note the lack of spaces in front of this line.

Attribute-style documentation is supported too."; asserteq!(BornIn69::DOCS, docstr); } ```