macro_rules! __hidden_handling_cases {
(else $e: expr) => { ... };
($cond : expr => $if_true: expr;
$(elif $cond2: expr => $if_t2:expr;)*
else $if_false:expr
) => { ... };
}Expand description
All magic happens there
macro_rules! __hidden_handling_cases {
(else $e: expr) => { ... };
($cond : expr => $if_true: expr;
$(elif $cond2: expr => $if_t2:expr;)*
else $if_false:expr
) => { ... };
}All magic happens there