pub struct SeqAlt11<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> { /* private fields */ }
Trait Implementations§
Source§impl<'a, I: ?Sized + Sequence, O1, O2, O3, O4, O5, O6, O7, O8, O9, O10, O11, E: ParserError, P1, T1, P2, T2, P3, T3, P4, T4, P5, T5, P6, T6, P7, T7, P8, T8, P9, T9, P10, T10, P11, T11> Parser<'a, I, (O1, O2, O3, O4, O5, O6, O7, O8, O9, O10, O11), E, SeqAlt11<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>> for Permutation<(P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11)>where
P1: Parser<'a, I, O1, E, T1>,
P2: Parser<'a, I, O2, E, T2>,
P3: Parser<'a, I, O3, E, T3>,
P4: Parser<'a, I, O4, E, T4>,
P5: Parser<'a, I, O5, E, T5>,
P6: Parser<'a, I, O6, E, T6>,
P7: Parser<'a, I, O7, E, T7>,
P8: Parser<'a, I, O8, E, T8>,
P9: Parser<'a, I, O9, E, T9>,
P10: Parser<'a, I, O10, E, T10>,
P11: Parser<'a, I, O11, E, T11>,
impl<'a, I: ?Sized + Sequence, O1, O2, O3, O4, O5, O6, O7, O8, O9, O10, O11, E: ParserError, P1, T1, P2, T2, P3, T3, P4, T4, P5, T5, P6, T6, P7, T7, P8, T8, P9, T9, P10, T10, P11, T11> Parser<'a, I, (O1, O2, O3, O4, O5, O6, O7, O8, O9, O10, O11), E, SeqAlt11<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>> for Permutation<(P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11)>where
P1: Parser<'a, I, O1, E, T1>,
P2: Parser<'a, I, O2, E, T2>,
P3: Parser<'a, I, O3, E, T3>,
P4: Parser<'a, I, O4, E, T4>,
P5: Parser<'a, I, O5, E, T5>,
P6: Parser<'a, I, O6, E, T6>,
P7: Parser<'a, I, O7, E, T7>,
P8: Parser<'a, I, O8, E, T8>,
P9: Parser<'a, I, O9, E, T9>,
P10: Parser<'a, I, O10, E, T10>,
P11: Parser<'a, I, O11, E, T11>,
Source§fn fab(
&self,
input: &mut &'a I,
) -> Result<(O1, O2, O3, O4, O5, O6, O7, O8, O9, O10, O11), E>
fn fab( &self, input: &mut &'a I, ) -> Result<(O1, O2, O3, O4, O5, O6, O7, O8, O9, O10, O11), E>
Parses the input. This method advances the input reference to the remaining
unparsed input. The method is named “fab” instead of “parse” to avoid conflicts
with the “parse” method of &str.
Source§fn fab_value<V: Clone>(self, value: V) -> Value<Self, V, I, O, E>where
Self: Sized,
fn fab_value<V: Clone>(self, value: V) -> Value<Self, V, I, O, E>where
Self: Sized,
Returns a parser that replaces the output of the underlying parser with V.
Source§fn fab_map<F>(self, func: F) -> ParserMap<Self, I, O, E, F>where
Self: Sized,
fn fab_map<F>(self, func: F) -> ParserMap<Self, I, O, E, F>where
Self: Sized,
This creates a Map parser that applies the function to the
output of the underlying parser.
Source§fn fab_try_map<F>(self, func: F) -> ParserTryMap<Self, I, O, E, F>where
Self: Sized,
fn fab_try_map<F>(self, func: F) -> ParserTryMap<Self, I, O, E, F>where
Self: Sized,
This parser first maps the input, and if the result is Option::Some or Result::Ok,
it unwraps the input. Othewise, the parser fails.
Auto Trait Implementations§
impl<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> Freeze for SeqAlt11<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>
impl<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> RefUnwindSafe for SeqAlt11<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>where
T1: RefUnwindSafe,
T2: RefUnwindSafe,
T3: RefUnwindSafe,
T4: RefUnwindSafe,
T5: RefUnwindSafe,
T6: RefUnwindSafe,
T7: RefUnwindSafe,
T8: RefUnwindSafe,
T9: RefUnwindSafe,
T10: RefUnwindSafe,
T11: RefUnwindSafe,
impl<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> Send for SeqAlt11<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>
impl<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> Sync for SeqAlt11<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>
impl<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> Unpin for SeqAlt11<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>
impl<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> UnwindSafe for SeqAlt11<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>where
T1: UnwindSafe,
T2: UnwindSafe,
T3: UnwindSafe,
T4: UnwindSafe,
T5: UnwindSafe,
T6: UnwindSafe,
T7: UnwindSafe,
T8: UnwindSafe,
T9: UnwindSafe,
T10: UnwindSafe,
T11: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more