Open
Description
There is a blanket impl<T> Pointable for T
that has an init
method, and as a result ALL types have the init
method, and searching for init
in Rustdoc lists ALL types:
https://docs.rs/rayon/1.10.0/rayon/?search=init
This is unhelpful. I'm trying to find more specific init
methods, and listing every single type in the crate is obscuring the search results.
For blanket impls, I'd prefer the search to only list the trait as one entry.
rustdoc 1.87.0-nightly (30f168e 2025-03-05)
Metadata
Metadata
Assignees
Labels
Type
Projects
Milestone
Relationships
Development
No branches or pull requests
Activity
lolbinarycat commentedon Mar 15, 2025
One situation that I think is worth keeping in mind is if someone were to search something like
Yield::init
in your example, we probably would want to still show them something.