macro_rules! if_pub { (pub $(#[$attr:meta])*; $($x:tt)*) => { ... }; ($($_:tt)*) => { ... }; }
Expand description
Generate the provided code if and only if pub
is present.
macro_rules! if_pub { (pub $(#[$attr:meta])*; $($x:tt)*) => { ... }; ($($_:tt)*) => { ... }; }
Generate the provided code if and only if pub
is present.