[][src]Struct wasm_reader_traits::ParserIter

pub struct ParserIter<R, P> { /* fields omitted */ }

Methods

impl<R, P> ParserIter<R, P>[src]

pub fn new(reader: R, parser: P) -> Self[src]

Trait Implementations

impl<R, P> Iterator for ParserIter<R, Option<P>> where
    R: Read,
    P: Parser<Next = Option<P>>, 
[src]

type Item = Result<P::Item, P::Error>

The type of the elements being iterated over.

impl<'_, R, P> Iterator for ParserIter<R, &'_ mut Option<P>> where
    R: Read,
    P: Parser<Next = Option<P>>, 
[src]

type Item = Result<P::Item, P::Error>

The type of the elements being iterated over.

Auto Trait Implementations

impl<R, P> RefUnwindSafe for ParserIter<R, P> where
    P: RefUnwindSafe,
    R: RefUnwindSafe

impl<R, P> Send for ParserIter<R, P> where
    P: Send,
    R: Send

impl<R, P> Sync for ParserIter<R, P> where
    P: Sync,
    R: Sync

impl<R, P> Unpin for ParserIter<R, P> where
    P: Unpin,
    R: Unpin

impl<R, P> UnwindSafe for ParserIter<R, P> where
    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<Choices> CoproductSubsetter<CNil, HNil> for Choices[src]

type Remainder = Choices

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, I> LiftInto<U, I> for T where
    U: LiftFrom<T, I>, 
[src]

impl<Source> Sculptor<HNil, HNil> for Source[src]

type Remainder = Source

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.