```rust #[doc(inline)] pub extern crate foo; ``` Could show `foo` as if it was a module. ```rust extern crate foo; #[doc(inline)] pub use foo::*; ``` Could inline the reexported items as if `foo` was a module.