-
Notifications
You must be signed in to change notification settings - Fork 12.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
compiler-docs: Missing trait impls for type #76736
Comments
Hey! I would like to check this out if that is okay |
Is this actually a regression? |
Dropping regression label. nightly-rustc docs are, well, not really important on non-nightly channels, as they cannot be used by normal consumers. |
@jakevossen5 if you're still interested in working on this we'd love to have the help! |
@jyn514 Thanks! Yes, I am still interested, I have been busy that past few weeks. I will give it a shot this weekend and will reach out if I can't figure it out! |
@jakevossen5 Since zulip is lag in my region at night, I post a respond here. |
I think I'll hop onto this if that's OK. I've always wanted to contribute :) |
Go for it! |
Rollup merge of rust-lang#121218 - ShoyuVanilla:fix-issue-76736, r=notriddle Fix missing trait impls for type in rustc docs Fixes rust-lang#76736
It doesn't seem to be fixed by #121218 😢 I'll check the cause |
This is a regression from stable to beta, although this issue will be P-low.
The problem is #73771 ignored documenting unstable traits for non-local types,
#76571 fixes some regressions caused by it but the regression
in nightly-rustc / compiler docs still opens.
For example: Compare https://doc.rust-lang.org/nightly/nightly-rustc/rustc_expand/base/struct.ExtCtxt.html#blanket-implementations and https://doc.rust-lang.org/1.46.0/nightly-rustc/rustc_expand/base/struct.ExtCtxt.html#blanket-implementations .
The doc in 1.46.0 has
MaybeResult
impl, while on nightly it doesn't have.A way to fix this issue is ignoring this check when the compiling-crates
are being passed
-Zforce-unstable-if-unmarked
flag or the crate/module hasrustc_private
feature:rust/src/librustdoc/clean/inline.rs
Lines 345 to 374 in c743fc4
Meta
rustc --version --verbose
: Version 1.48.0-nightly (9b41541 2020-09-14)The text was updated successfully, but these errors were encountered: