For example, the std::ops::Index trait has an associated Output type. Of course, that type is potentially different for each impl of the trait. impl are documented at http://localhost/rust/std/ops/trait.Index.html#implementors , but there is apparently now way to know what is the Output type for a given implementation. (Other than finding the source code, which is not necessarily easy because of #15744.)
For example, the
std::ops::Indextrait has an associatedOutputtype. Of course, that type is potentially different for eachimplof the trait.implare documented at http://localhost/rust/std/ops/trait.Index.html#implementors , but there is apparently now way to know what is theOutputtype for a given implementation. (Other than finding the source code, which is not necessarily easy because of #15744.)