rustdoc: Allow inlining of reexported crates and crate items #46296
Closed
Description
#[doc(inline)]
pub extern crate foo;
Could show foo
as if it was a module.
extern crate foo;
#[doc(inline)]
pub use foo::*;
Could inline the reexported items as if foo
was a module.