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

pub struct SkipRepeatUntil<Input, P, E> where
    <Input as StreamOnce>::Error: ParseError<<Input as StreamOnce>::Token, <Input as StreamOnce>::Range, <Input as StreamOnce>::Position>,
    Input: Stream,
    P: Parser<Input>,
    E: Parser<Input>, 
{ pub parser: P, pub end: E, // some fields omitted }

Fields

parser: Pend: E

Trait Implementations

impl<Input, P, E> Parser<Input> for SkipRepeatUntil<Input, P, E> where
    <Input as StreamOnce>::Error: ParseError<<Input as StreamOnce>::Token, <Input as StreamOnce>::Range, <Input as StreamOnce>::Position>,
    Input: Stream,
    P: Parser<Input>,
    E: Parser<Input>, 
[src]

type Output = ()

The type which is returned if the parser is successful.

type PartialState = <With<RepeatUntil<Sink, P, E>, Value<Input, ()>> as Parser<Input>>::PartialState

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

Auto Trait Implementations

impl<Input, P, E> RefUnwindSafe for SkipRepeatUntil<Input, P, E> where
    E: RefUnwindSafe,
    P: RefUnwindSafe

impl<Input, P, E> Send for SkipRepeatUntil<Input, P, E> where
    E: Send,
    P: Send

impl<Input, P, E> Sync for SkipRepeatUntil<Input, P, E> where
    E: Sync,
    P: Sync

impl<Input, P, E> Unpin for SkipRepeatUntil<Input, P, E> where
    E: Unpin,
    P: Unpin

impl<Input, P, E> UnwindSafe for SkipRepeatUntil<Input, P, E> where
    E: UnwindSafe,
    P: 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<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> From<T> for T[src]

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

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.