I'm doing research for a blog post on the traits in Rust's standard library. In the blog post I'd like to point out notable implementation examples for each trait, both within the standard library and also from popular crates.
One thing I like about the standard library docs is that I can go to any trait and at the bottom of the trait docs I can see a complete list of every type that implements that trait.
I would like to have the same information for crates but if I search for PartialEq
or Ord
or whatever in the crate docs the search returns no results, even if there are types within the crate that I know implement those traits.
I don't want to manually search by hand, going from type to type, within a crate to maybe find a trait implementation I'm looking for. Is there any faster way to do it?