[][src]Struct combinedfun::combinators::CountedSeparated

pub struct CountedSeparated<CG, R, F1, F2> { /* fields omitted */ }

Trait Implementations

impl<I, CG, C, R, F1, F2> ParserImpl<I> for CountedSeparated<CG, R, F1, F2> where
    I: Clone,
    C: Collection<Item = F1::Output>,
    R: RangeLike,
    F1: ParserImpl<I>,
    F2: ParserImpl<I, Error = F1::Error>,
    CG: Fn() -> C, 
[src]

type Output = (C, usize)

The output type of the parser

type Error = F1::Error

The error type of the parser

Auto Trait Implementations

impl<CG, R, F1, F2> Unpin for CountedSeparated<CG, R, F1, F2> where
    CG: Unpin,
    F1: Unpin,
    F2: Unpin,
    R: Unpin

impl<CG, R, F1, F2> Sync for CountedSeparated<CG, R, F1, F2> where
    CG: Sync,
    F1: Sync,
    F2: Sync,
    R: Sync

impl<CG, R, F1, F2> Send for CountedSeparated<CG, R, F1, F2> where
    CG: Send,
    F1: Send,
    F2: Send,
    R: Send

impl<CG, R, F1, F2> UnwindSafe for CountedSeparated<CG, R, F1, F2> where
    CG: UnwindSafe,
    F1: UnwindSafe,
    F2: UnwindSafe,
    R: UnwindSafe

impl<CG, R, F1, F2> RefUnwindSafe for CountedSeparated<CG, R, F1, F2> where
    CG: RefUnwindSafe,
    F1: RefUnwindSafe,
    F2: RefUnwindSafe,
    R: RefUnwindSafe

Blanket Implementations

impl<I, P, T> Tag<Span<I, P>> for T where
    I: Clone,
    P: Position<I>,
    T: Tag<I> + ?Sized
[src]

type Output = <T as Tag<I>>::Output

impl<F, I, O, E> ParserImpl<I> for F where
    F: Fn(I) -> Result<(I, O), E>, 
[src]

type Output = O

The output type of the parser

type Error = E

The error type of the parser

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.

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]