[][src]Struct parser_fuck::combinators::Many

pub struct Many<A, I = ()> { /* fields omitted */ }

Multiple parsing

Methods

impl<I: TimeTravel, A> Many<A, I> where
    A: Parser<I>, 
[src]

pub fn new(a: A, min: usize, max: Option<usize>) -> Self[src]

Trait Implementations

impl<A: Clone, I: Clone> Clone for Many<A, I>[src]

impl<A: Debug, I: Debug> Debug for Many<A, I>[src]

impl<A: Eq, I: Eq> Eq for Many<A, I>[src]

impl<I: TimeTravel, A> Parser<I> for Many<A, I> where
    A: Parser<I>, 
[src]

type Output = Vec<A::Output>

impl<A: PartialEq, I: PartialEq> PartialEq<Many<A, I>> for Many<A, I>[src]

impl<A, I> StructuralEq for Many<A, I>[src]

impl<A, I> StructuralPartialEq for Many<A, I>[src]

Auto Trait Implementations

impl<A, I> RefUnwindSafe for Many<A, I> where
    A: RefUnwindSafe,
    I: RefUnwindSafe

impl<A, I> Send for Many<A, I> where
    A: Send,
    I: Send

impl<A, I> Sync for Many<A, I> where
    A: Sync,
    I: Sync

impl<A, I> Unpin for Many<A, I> where
    A: Unpin,
    I: Unpin

impl<A, I> UnwindSafe for Many<A, I> where
    A: UnwindSafe,
    I: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<I, U, F> Parser<I> for F where
    F: Fn(I) -> Option<U>,
    I: TimeTravel
[src]

type Output = U

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,