-
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 rendering of underscore_imports a.k.a. impl-only-use is unuseful #61592
Comments
Well, looks as expected from my opinion. 🤣 What do you suggest that rustdoc should do in this case? |
I really can't think of something that's super obvious. What I would want is to have the original name in there as the main link, but somehow making it obvious that the name isn't actually visible at this path. Actually, looking at this a little more there is an actual bug here that really makes these docs unusable, all those Hmmm, playing with it a little more I tried using |
Sounds like a good idea. I'll try to do it *soon*. |
Rustdoc render public underscore_imports as Re-exports Fixes rust-lang#61592
Rustdoc render public underscore_imports as Re-exports Fixes rust-lang#61592
I tried using a lot of
pub use Foo as _;
in futures to avoid issues with preludes and extension trait shadowing, unfortunately Rustdoc currently doesn't seem to have any special handling of this feature resulting in a big list of exported_
traits:The text was updated successfully, but these errors were encountered: