Open
Description
There is a "bug" related to cross-crate re-exports and where
clauses: In the core
docs, the impl looks like this (which is how it's actually written in the source):
But in the std
docs, the impl looks like this, with all of the bounds expressed as where
clauses:
I think the re-exported version is actually better, because it's easier to read, but they should at least be consistent.
Originally posted by @camelid in #88809 (comment)
Note: It's possible this is triggered by any re-exports, not just cross-crate ones, but I haven't checked.