Struct ParserIterator
struct ParserIterator<I, E, F> { ... }
Main structure associated to the [iterator] function.
Implementations
impl<I: Clone, E, F> ParserIterator<I, E, F>
fn finish(self: Self) -> IResult<I, (), E>Returns the remaining input if parsing was successful, or the error if we encountered an error.
impl<I> IntoIterator for ParserIterator<I, E, F>
fn into_iter(self: Self) -> I
impl<I, E, F> Freeze for ParserIterator<I, E, F>
impl<I, E, F> RefUnwindSafe for ParserIterator<I, E, F>
impl<I, E, F> Send for ParserIterator<I, E, F>
impl<I, E, F> Sync for ParserIterator<I, E, F>
impl<I, E, F> Unpin for ParserIterator<I, E, F>
impl<I, E, F> UnwindSafe for ParserIterator<I, E, F>
impl<Input, Output, Error, F> Iterator for ParserIterator<Input, Error, F>
fn next(self: &mut Self) -> Option<<Self as >::Item>
impl<T> Any for ParserIterator<I, E, F>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for ParserIterator<I, E, F>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for ParserIterator<I, E, F>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> From for ParserIterator<I, E, F>
fn from(t: T) -> TReturns the argument unchanged.
impl<T, U> Into for ParserIterator<I, E, F>
fn into(self: Self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom for ParserIterator<I, E, F>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for ParserIterator<I, E, F>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>