Module show_notes::e001
source · Expand description
Document all the things!
- Date: October 3, 2015
- Subject: Documentation in general, and
rustdoc
andcargo doc
in particular. - Audio
§Notes
This is a mostly-empty module, and it is intended as such. Why? Well, because almost all the sample code exists in these comments, which serve as the show notes. If you listen to the episode or take a look at the source files, you’ll see how it works!
The components below are included solely so you can see how the docstrings work with each kind of thing. Make sure to click on the names of the items: there is more documentation there. Again, take a look at the source to see how it looks in the context of a file module.
Note that this module-level docstring uses //!
rather than ///
-style
comments. This is because this docstring is documenting the item which
contains it, rather than the following item. Per Rust RFC 505, the
preferred approach is always to use the “following” form (///
) rather than
the “containing” form (//!
), except for module-level docs like these.
(I will be following RFC 505 throughout.)
§Links
- Rust and MSVC tracking issue
- Other documentation tools:
- Predecessors:
- Other new languages with Markdown tooling
- Julia has a built-in documentation system
- Elixir has
ex_doc
- Rust 1.3 release announcement
- Rust’s package hosting: crates.io
- Crater for testing for backwards compatibility
- Semantic versioning
- “Stability as a Deliverable”: Rust official blog post on version stability, backwards compatibility, and release channels.
- The Rust book chapter on
rustdoc
§Follow/Support
- New Rustacean:
- Twitter: @newrustacean
- App.net: @newrustacean
- Patreon
- Email: hello@newrustacean.com
- Twitter: @newrustacean
- Chris Krycho
- Twitter: @chriskrycho
- App.net: @chriskrycho
- Twitter: @chriskrycho
Structs§
- This is a sample structure, to demonstrate
rustdoc
/cargo doc
.
Functions§
- This documents a plain-old function.