[][src]Struct combine::parser::repeat::RepeatUntil

pub struct RepeatUntil<F, P, E> { /* fields omitted */ }

Trait Implementations

impl<F, Input, P, E> Parser<Input> for RepeatUntil<F, P, E> where
    Input: Stream,
    F: Extend<P::Output> + Default,
    P: Parser<Input>,
    E: Parser<Input>, 
[src]

type Output = F

The type which is returned if the parser is successful.

type PartialState = (F, bool, P::PartialState, E::PartialState)

Determines the state necessary to resume parsing after more input is supplied. Read more

impl<F: Clone, P: Clone, E: Clone> Clone for RepeatUntil<F, P, E>[src]

impl<F: Copy, P: Copy, E: Copy> Copy for RepeatUntil<F, P, E>[src]

Auto Trait Implementations

impl<F, P, E> Send for RepeatUntil<F, P, E> where
    E: Send,
    P: Send

impl<F, P, E> Sync for RepeatUntil<F, P, E> where
    E: Sync,
    P: Sync

impl<F, P, E> Unpin for RepeatUntil<F, P, E> where
    E: Unpin,
    P: Unpin

impl<F, P, E> UnwindSafe for RepeatUntil<F, P, E> where
    E: UnwindSafe,
    P: UnwindSafe

impl<F, P, E> RefUnwindSafe for RepeatUntil<F, P, E> where
    E: RefUnwindSafe,
    P: RefUnwindSafe

Blanket Implementations

impl<Input, P> EasyParser<Input> for P where
    Input: Stream,
    P: Parser<Stream<Input>> + ?Sized,
    <Input as StreamOnce>::Token: PartialEq<<Input as StreamOnce>::Token>,
    <Input as StreamOnce>::Range: PartialEq<<Input as StreamOnce>::Range>, 
[src]

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

impl<T> From<T> for 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.

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

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

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