Expand description
The definitions of passes which transform crate information.
Modulesยง
- check_
doc_ ๐test_ visibility - Looks for items missing (or incorrectly having) doctests.
- collect_
intra_ ๐doc_ links - Resolves intra-doc links (RFC 1946).
- collect_
trait_ ๐impls - Collects trait impls for each item in the crate.
- lint ๐
- Runs several rustdoc lints, consolidating them into a single pass for efficiency and simplicity.
- propagate_
doc_ ๐cfg - Propagates
#[doc(cfg(โฆ))](RFC 3631) to child items. - propagate_
stability ๐ - Propagates stability to child items.
- strip_
aliased_ ๐non_ local - Strips all non-local private aliases items from the output.
- strip_
hidden ๐ - Strip all
#[doc(hidden)]items from the output. - strip_
priv_ ๐imports - Strips all private imports (
use,extern crate) from a crate. - strip_
private ๐ - Strip all private items from the output.
- stripper ๐
- A collection of utility functions for the
strip_*passes.
Structsยง
- Store ๐
Functionsยง
- finalize ๐
- To be run after the cache in
DocContexthas been fully populated. - run ๐