1 #[macro_export] 2 macro_rules! attrs_on_struct { 3 ( $( #[$attr:meta] )* ) => { 4 $( #[$attr] )* 5 pub struct ExpandedStruct; 6 } 7 } 8
1 #[macro_export] 2 macro_rules! attrs_on_struct { 3 ( $( #[$attr:meta] )* ) => { 4 $( #[$attr] )* 5 pub struct ExpandedStruct; 6 } 7 } 8