[][src]Trait wasm_reader_traits::CollectHelper

pub trait CollectHelper<E> {
    type Item;
    fn collect<R: Read>(self, reader: &mut R) -> Result<Self::Item, E>;
}

Associated Types

type Item

Loading content...

Required methods

fn collect<R: Read>(self, reader: &mut R) -> Result<Self::Item, E>

Loading content...

Implementations on Foreign Types

impl<E> CollectHelper<E> for ()[src]

type Item = ()

Loading content...

Implementors

impl<P, E> CollectHelper<<P as Parser>::Error> for P where
    P: Parser<Error = Error<E>>,
    P::Next: CollectHelper<P::Error>,
    E: From<Error>, 
[src]

type Item = (P::Item, <P::Next as CollectHelper<P::Error>>::Item)

Loading content...