[][src]Struct munch::Join

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

Trait Implementations

impl<A, B, R, Input> Parser<Input> for Join<A, B, R> where
    A: Parser<Input>,
    B: Parser<Input, Error = A::Error>,
    R: Range,
    Input: Copy
[src]

type Output = Vec<A::Output>

type Error = A::Error

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

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

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

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

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

Auto Trait Implementations

impl<A, B, R> Send for Join<A, B, R> where
    A: Send,
    B: Send,
    R: Send

impl<A, B, R> Sync for Join<A, B, R> where
    A: Sync,
    B: Sync,
    R: Sync

impl<A, B, R> Unpin for Join<A, B, R> where
    A: Unpin,
    B: Unpin,
    R: Unpin

impl<A, B, R> UnwindSafe for Join<A, B, R> where
    A: UnwindSafe,
    B: UnwindSafe,
    R: UnwindSafe

impl<A, B, R> RefUnwindSafe for Join<A, B, R> where
    A: RefUnwindSafe,
    B: RefUnwindSafe,
    R: RefUnwindSafe

Blanket Implementations

impl<F, Input, Output, Error> Parser<Input> for F where
    F: FnMut(Input, usize) -> Result<(usize, Output), (usize, Error)>, 
[src]

type Output = Output

type Error = Error

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 = !

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]