ToString has the implementation impl<T: fmt::Display + ?Sized> ToString for T which is not listed in its documentation page.
It is however listed in libstd, so rustdoc does the correct thing after doc inlining.
This bug with blanket impls shows up in user's crates, see discussion on users.rust-lang; for example the Itertools trait in itertools does not have its blanket impl visible in the docs.
ToStringhas the implementationimpl<T: fmt::Display + ?Sized> ToString for Twhich is not listed in its documentation page.It is however listed in libstd, so rustdoc does the correct thing after doc inlining.
This bug with blanket impls shows up in user's crates, see discussion on users.rust-lang; for example the
Itertoolstrait in itertools does not have its blanket impl visible in the docs.