You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Foo link in internal::Bar<T: Foo> will try to point to internal::Foo, even though the re-export moves the location of the documentation to the crate root.
The text was updated successfully, but these errors were encountered:
Cross crate links can target items which are not rendered in the documentation.
If the item is reexported at a higher level, the destination of the link (a
concatenation of the fully qualified name) may actually lead to nowhere. This
fixes this problem by altering rustdoc to emit pages which redirect to the local
copy of the reexported structure.
cc rust-lang#14515Closesrust-lang#14137
A couple examples in Rust's documentation:
serialize::Encodable => Click on
Encoder
serialize::Decodable => Click on
Decoder
This is a clear example of what kind of crate layout causes this error. Pass it through rustdoc and see for yourself:
The
Foo
link ininternal::Bar<T: Foo>
will try to point tointernal::Foo
, even though the re-export moves the location of the documentation to the crate root.The text was updated successfully, but these errors were encountered: