Macro gen_choice_backward

Source
macro_rules! gen_choice_backward {
    ($src:expr; $($variant:ident),+) => { ... };
}
Expand description

Given variants, generate if let branches to transform $src to a nested Either term if let variant1(p) = x { inj_ord_choice_result!(…) } else if let variant2(p) = x { … } …