macro_rules! feature_gate {
($feature:expr, $block:block) => { ... };
($feature:expr, $if_block:block, $else_block:block) => { ... };
}
Expand description
Utility macro for conditional compilation based on features
macro_rules! feature_gate {
($feature:expr, $block:block) => { ... };
($feature:expr, $if_block:block, $else_block:block) => { ... };
}
Utility macro for conditional compilation based on features