Open
Description
opened on Mar 2, 2021
This is a tracking issue for the rustdoc feature -Z normalize-docs
. This normalizes projections like <Vec<T> as IntoIterator>::IntoIter
to std::vec::IntoIter<T>
in the generated documentation.
About tracking issues
Tracking issues are used to record the overall progress of implementation.
They are also used as hubs connecting to other relevant issues, e.g., bugs or open design questions.
A tracking issue is however not meant for large scale discussion, questions, or bug reports about a feature.
Instead, open a dedicated issue for the specific matter and add the relevant feature gate label.
Steps
- Implement the features (Normalize
<X as Y>::T
for rustdoc #77467) - Fix the bugs blocking stabilization (Move reporting recursion limit errors outside of the trait system #81091)
- Cycles in trait bounds should be recoverable (Rustdoc regression (overflow evaluating the requirement …) #79459): Make cycle errors recoverable #102037
- Recursion limit errors in trait bounds should be recoverable (nightly rustdoc reaches recursion limit while beta works fine #79506)
- Stabilization PR (see instructions on rustc-dev-guide)
Unresolved Questions
No unresolved questions known, this is "just hard".
Implementation history
- initial impl: Normalize
<X as Y>::T
for rustdoc #77467 - reverted due to breakage: Revert "Normalize
<X as Y>::T
for rustdoc" #79469 - re-added as unstable: Add -Z normalize-docs and enable it for compiler docs #79525
Metadata
Assignees
Labels
Unstable rustdoc option: Normalize/evaluate types when generating docsArea: Associated items (types, constants & functions)Category: An issue tracking the progress of sth. like the implementation of an RFCStatus: There are blocking design concerns.Status: The implementation is incomplete.Relevant to the rustdoc team, which will review and decide on the PR/issue.
Activity