[][src]Struct munch::Repeat

pub struct Repeat<A, R: Range>(_, _);

Trait Implementations

impl<A: Clone, R: Clone + Range> Clone for Repeat<A, R>[src]

impl<A: Copy, R: Copy + Range> Copy for Repeat<A, R>[src]

impl<A: Debug, R: Debug + Range> Debug for Repeat<A, R>[src]

impl<A, R, Input> Parser<Input> for Repeat<A, R> where
    A: Parser<Input>,
    R: Range,
    Input: Copy
[src]

type Output = Vec<A::Output>

type Error = A::Error

impl<A: PartialEq, R: PartialEq + Range> PartialEq<Repeat<A, R>> for Repeat<A, R>[src]

impl<A, R: Range> StructuralPartialEq for Repeat<A, R>[src]

Auto Trait Implementations

impl<A, R> RefUnwindSafe for Repeat<A, R> where
    A: RefUnwindSafe,
    R: RefUnwindSafe

impl<A, R> Send for Repeat<A, R> where
    A: Send,
    R: Send

impl<A, R> Sync for Repeat<A, R> where
    A: Sync,
    R: Sync

impl<A, R> Unpin for Repeat<A, R> where
    A: Unpin,
    R: Unpin

impl<A, R> UnwindSafe for Repeat<A, R> where
    A: UnwindSafe,
    R: 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<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.