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

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

Fields

p: P

Trait Implementations

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

type Output = ()

The type which is returned if the parser is successful.

type PartialState = <Ignore<Many1<Sink, Ignore<P>>> as Parser<Input>>::PartialState

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

Auto Trait Implementations

impl<Input, P> RefUnwindSafe for SkipMany1<Input, P> where
    P: RefUnwindSafe
[src]

impl<Input, P> Send for SkipMany1<Input, P> where
    P: Send
[src]

impl<Input, P> Sync for SkipMany1<Input, P> where
    P: Sync
[src]

impl<Input, P> Unpin for SkipMany1<Input, P> where
    P: Unpin
[src]

impl<Input, P> UnwindSafe for SkipMany1<Input, P> where
    P: UnwindSafe
[src]

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, 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.