Struct combine::parser::sequence::Between[][src]

pub struct Between<L, R, P>(_)
where
    L: Parser,
    R: Parser<Input = <L as Parser>::Input>,
    P: Parser<Input = <L as Parser>::Input>
;

Trait Implementations

impl<L: Clone, R: Clone, P: Clone> Clone for Between<L, R, P> where
    L: Parser,
    R: Parser<Input = <L as Parser>::Input>,
    P: Parser<Input = <L as Parser>::Input>,
    L::Output: Clone,
    P::Output: Clone,
    R::Output: Clone,
    P::Output: Clone
[src]

impl<L, R, P> Parser for Between<L, R, P> where
    L: Parser,
    R: Parser<Input = <L as Parser>::Input>,
    P: Parser<Input = <L as Parser>::Input>, 
[src]

type Input = <L as Parser>::Input

The type which is taken as input for the parser. The type must implement the Stream trait which allows the parser to read items from the type. Read more

type Output = <Map<(L, P, R), fn(_: (L::Output, P::Output, R::Output)) -> P::Output> as Parser>::Output

The type which is returned if the parser is successful.

type PartialState = <Map<(L, P, R), fn(_: (L::Output, P::Output, R::Output)) -> P::Output> as Parser>::PartialState

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

Auto Trait Implementations

impl<L, R, P> RefUnwindSafe for Between<L, R, P> where
    L: RefUnwindSafe,
    P: RefUnwindSafe,
    R: RefUnwindSafe

impl<L, R, P> Send for Between<L, R, P> where
    L: Send,
    P: Send,
    R: Send

impl<L, R, P> Sync for Between<L, R, P> where
    L: Sync,
    P: Sync,
    R: Sync

impl<L, R, P> Unpin for Between<L, R, P> where
    L: Unpin,
    P: Unpin,
    R: Unpin

impl<L, R, P> UnwindSafe for Between<L, R, P> where
    L: UnwindSafe,
    P: 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.