macro_rules! declare_conditional_macro {
( $(#[$meta:meta])* macro $name:ident = ($f1:expr, $f2:expr) ) => { ... };
}
Expand description
Helper: define a macro that expands a token tree iff a pair of features are both present.
macro_rules! declare_conditional_macro {
( $(#[$meta:meta])* macro $name:ident = ($f1:expr, $f2:expr) ) => { ... };
}
Helper: define a macro that expands a token tree iff a pair of features are both present.