[][src]Macro proc_use_inline::proc_use

proc_use!() { /* proc-macro */ }

proc_use! macro, takes mod and use syntax to generate mod and use statements.

Example

proc_use_inline::proc_use! {
   #[mod]
   use foo::*;
   #[mod("../external/bar.rs")]
   use bar::bar;
}