[][src]Struct gobble::pull::PullParser

pub struct PullParser<'a, P: Parser, E: Parser> {
    pub s: &'a str,
    // some fields omitted
}

Fields

s: &'a str

Implementations

impl<'a, P: Parser> PullParser<'a, P, EOI>[src]

pub fn new(p: P, s: &'a str) -> Self[src]

impl<'a, P: Parser, E: Parser> PullParser<'a, P, E>[src]

pub fn with_end(p: P, end: E, s: &'a str) -> Self[src]

Trait Implementations

impl<'a, P: Parser, E: Parser> Iterator for PullParser<'a, P, E>[src]

type Item = Result<P::Out, PErr<'a>>

The type of the elements being iterated over.

Auto Trait Implementations

impl<'a, P, E> RefUnwindSafe for PullParser<'a, P, E> where
    E: RefUnwindSafe,
    P: RefUnwindSafe

impl<'a, P, E> Send for PullParser<'a, P, E> where
    E: Send,
    P: Send

impl<'a, P, E> Sync for PullParser<'a, P, E> where
    E: Sync,
    P: Sync

impl<'a, P, E> Unpin for PullParser<'a, P, E> where
    E: Unpin,
    P: Unpin

impl<'a, P, E> UnwindSafe for PullParser<'a, 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<T> From<T> for T[src]

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

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

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.