-
Notifications
You must be signed in to change notification settings - Fork 13k
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: render implementations for type aliases #25892
Conversation
This will allow showing trait implementations associated with different aliases of the same type together.
For typedefs render items implemented for the type under both new and old names. Fixes (very narrowly) #19381.
r? @cmr (rust_highfive has picked a reviewer for you, use r? to override) |
I'm going to need help adding a test case. |
Would it be possible to post screenshots, and/or host a live instance with this change? |
Rendered |
The bug you linked is a different issue I think. |
What was I thinking... It fixes half of that bug not the 'Implementors' part. |
Yes I agree with @bluss that I don't think this quite fixes #19381, and I'm also not sure if we want to take this route just yet due to #14072. For example on the documentation page for I suppose it's also somewhat unclear to me what the motivation for this is because finding the documentation of the typedef itself should just be following a link. |
@alexcrichton What would need to change about this fix to make it more suitable? It looks like this would address #32077. |
For typedefs render items implemented for the type under both new and old names.
Fixes (very narrowly) #19381.