Trait Alt
pub trait Alt<I, O, E> {
// Required method
fn choice(&mut self, input: &mut I) -> Result<O, ErrMode<E>> ⓘ;
}
Available on crate feature
dep_winnow
only.Expand description
Helper trait for the alt()
combinator.
This trait is implemented for tuples of up to 21 elements