doc-comment

Write doc comments from macros.
Please note that calling macros in doc attribute was added in Rust 1.54 so unless you
need to support older Rust versions, you don't need this crate and you can do the same
thing with:
Usage example
// Of course, we need to import the `doc_comment` macro:
extern crate doc_comment;
// If you want to test examples in your README file.
doctest!;
// If you want to test your README file ONLY on "cargo test":
doctest!;
// If you want to document an item:
doc_comment!;
For more information, take a look at the documentation.