-
Notifications
You must be signed in to change notification settings - Fork 12.9k
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
Rustdoc support for universal_impl_trait #49304
Conversation
(rust_highfive has picked a reviewer for you, use r? to override) |
Ah, no, this does not work if |
Ah, i was starting to read through it. Looking forward to seeing if you can get it working! Also, it doesn't really require the other PR. It's okay to expose features in rustdoc that are unstable, because they'll only be there in the first place if the library enabled the feature. Other unstable features have been exposed in rustdoc before they were stable, and it's not like the other commits changed anything that rustdoc depends on. |
7bc7fbe
to
4800afa
Compare
This looks great! Thanks so much! @bors r+ |
📌 Commit 4800afa has been approved by |
@bors p=6 |
Rustdoc support for universal_impl_trait Hides type parameters synthesized by `impl Trait`-in-argument-position, and enables links to trait names. <img alt="before" src="https://user-images.githubusercontent.com/7091080/37831646-a61413c6-2ee9-11e8-8ec2-a6137956d922.png" width="450"/> ↓ <img alt="after" src="https://user-images.githubusercontent.com/7091080/37831657-b2ff0ae6-2ee9-11e8-8797-fdad904782bf.png" width="450"/> Fixes #49309
☀️ Test successful - status-appveyor, status-travis |
Hides type parameters synthesized by
impl Trait
-in-argument-position, and enables links to trait names.↓
Fixes #49309