-
Notifications
You must be signed in to change notification settings - Fork 212
Include methods in search results #601
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
Comments
Oh, the method is there, it's the fourth result. I guess I can't read, sorry. ...consider this a request to move exact matches to the top of the list? |
This is a feature request for rustdoc, not docs.rs. Can you open an issue in https://github.com/rust-lang/rust instead? Also, I would count |
You can do so by filtering the items: |
Sure, done! rust-lang/rust#69025 |
Not sure, but I don't think so. Intuitively it's simpler and makes more sense to look for symbols that have exactly the same name, including casing. It takes zero additional effort to type the name with the correct casing.
That's useful, thanks! |
I wanted to find the description of the
StreamExt::flatten
method from thefutures
crate.Querying "flatten", the results were not very helpful. Fortunately there's the
Flatten
struct that references the method in its description.The method is present in the "In Return Types" tab (and tabs are a bit unintuitive), so it seems showing the method is already possible. But the method shows up in those results only because it returns
Flatten
.The text was updated successfully, but these errors were encountered: