1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
use retrieve::*; /// Example of in the below: /// ``` /// #[mod_pub_use(a, b)] /// ``` /// will be the same as: /// ``` /// mod a; /// pub use a::*; /// mod b; /// pub use b::*; /// ``` #[mod_pub_use(a, b)] pub struct X { pub a: i32, pub b: i32 }