-
Notifications
You must be signed in to change notification settings - Fork 198
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
Support for discovering cross crate implementation of a Trait for types present in a foreign crates. #2437
Comments
Thank you for the idea, this sounds like #1467, or am I missing something? |
Hi @syphar my initial idea & #1467 are pretty close, what I think would be amazing to have if it can indexed on the docs.rs server itself and also to show a distinct filtering regarding whether the crate who are implementing this have it implemented internally or is it public in on the object types of the crate. |
That's a tough one, but both would depend on the same JSON processing & similar storage requirements, so I would propose we merge these. Could you add a comment to #1467 description the additional feature idea? Then we can close this one. |
moved the last point to #1467 |
This idea came to my mind while opening my 19th tab for searching a implementation of the trait in my current crate I was working with, here is basically what I thought.
let's say you have a crate
metrics
, this crate has a amazing trait namedLayer<R>
and with some method present inside of it.now let's say I wish to discover crates which implement this trait on it self, therefore instead of manually scrounging docs.rs maybe we have a tiny little button which helps us do that, directly from the page of the crate itself, in my understanding this can save redundant tab spawning as well.
Let me know what you guys think.
The text was updated successfully, but these errors were encountered: