CombineFail

Trait CombineFail 

Source
pub trait CombineFail<'a, Rhs, Out> {
    // Required method
    fn combine_fail(
        self,
        self_state: State<'a>,
        other: Rhs,
        other_state: State<'a>,
    ) -> Out;
}

Required Methods§

Source

fn combine_fail( self, self_state: State<'a>, other: Rhs, other_state: State<'a>, ) -> Out

Implementors§

Source§

impl<'a, F1, F2> CombineFail<'a, F2, (F1, State<'a>, F2, State<'a>)> for F1

Source§

impl<F1, F2> CombineFail<'_, F2, (F1, F2)> for F1

Source§

impl<F1, F2> CombineFail<'_, F2, ()> for F1