-
-
Notifications
You must be signed in to change notification settings - Fork 14.8k
PinDerefMutHelper should not show up in impl DerefMut for Pin #147998
Copy link
Copy link
Open
Labels
A-pinArea: PinArea: PinC-bugCategory: This is a bug.Category: This is a bug.T-bootstrapRelevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap)Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap)T-cargoRelevant to the cargo team, which will review and decide on the PR/issue.Relevant to the cargo team, which will review and decide on the PR/issue.T-rustdocRelevant to the rustdoc team, which will review and decide on the PR/issue.Relevant to the rustdoc team, which will review and decide on the PR/issue.
Metadata
Metadata
Assignees
Labels
A-pinArea: PinArea: PinC-bugCategory: This is a bug.Category: This is a bug.T-bootstrapRelevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap)Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap)T-cargoRelevant to the cargo team, which will review and decide on the PR/issue.Relevant to the cargo team, which will review and decide on the PR/issue.T-rustdocRelevant to the rustdoc team, which will review and decide on the PR/issue.Relevant to the rustdoc team, which will review and decide on the PR/issue.
Type
Fields
Give feedbackNo fields configured for issues without a type.
Location (URL)
https://doc.rust-lang.org/nightly/std/pin/struct.Pin.html#impl-DerefMut-for-Pin%3CPtr%3E
Summary
The PR #145608 explicitly contains measures using
#[cfg(doc)]to ensure that the docs are rendered in a certain way. This works locally, as can be seen from the locally generated docs in #145608 (comment), but on doc.rust-lang.org this does not seem to apply.Perhaps
--cfg docis not applied when building docs for the website, even though they are applied locally?