inner/
lib.rs

1#[macro_export]
2macro_rules! doc_inline_reexport {
3    ( $($lib:ident,)* ) => { $(
4        #[doc(inline)]
5        pub use $lib::{self, *};
6    )* };
7}