For example, a search for String::from_str in the std docs only shows three (duplicate) results from the collections crate, even though from_str is also exported by std::string::String.
I suspect that re-exported "static" methods are not included in the search index. For example, search for ::new in the std docs and marvel at how few results appear in the std crate while their "home" crate implementations do appear.
For example, a search for
String::from_strin thestddocs only shows three (duplicate) results from thecollectionscrate, even thoughfrom_stris also exported bystd::string::String.I suspect that re-exported "static" methods are not included in the search index. For example, search for
::newin thestddocs and marvel at how few results appear in thestdcrate while their "home" crate implementations do appear.