rustup doc --std
rustdoc
Rust provides a standard documentation tool called rustdoc
. It is commonly used through cargo doc
.
Because of this Rust code is almost always documented in a common format.
std
DocumentationThe standard library documentation is hosted at https://doc.rust-lang.org/std/.
A local, offline version can be opened with:
rustup doc --std
Documentation for crates hosted on http://crates.io/ can be found at https://docs.rs/.
Some crates may also have other documentation found via the "Documentation" link on their listing in http://crates.io/.
This page documents the vec
module.
It starts with some examples, then lists any `struct`s, traits, or functions the module exports.
rustdoc
can read Rust code and Markdown documents.
//!
and ///
comments are read as Markdown.
//! Module documentation. (e.g. the 'Examples' part of `std::vec`).
/// Document functions, structs, traits and values.
/// This documents a function.
fn function_with_documentation() {}
// This comment will not be shown as documentation.
// The function itself will be.
fn function_without_documentation() {}
By default code blocks in documentation are tested.
/// ```rust
/// assert_eq!(always_true(), true)
/// ```
fn always_true() -> bool { true }
This code will not be run, as it doesn’t terminate.
/// ```rust,no_run
/// serve();
/// ```
fn serve() -> ! { loop {} }
The arguments and return types of functions are links to their respective types.
The sidebar on the left offers quick navigate to other parts of the module.
This command builds and opens the docs to your current project:
$ cargo doc --open
$ cargo doc --document-private-items --open