[][src]Trait wasm_reader_traits::IntoParser

pub trait IntoParser {
    type Item;
    type Next;
    type Error;
    type Parser: Parser<Item = Self::Item, Next = Self::Next, Error = Self::Error>;
    fn into(self) -> Self::Parser;
}

Associated Types

type Item

type Next

type Error

type Parser: Parser<Item = Self::Item, Next = Self::Next, Error = Self::Error>

Loading content...

Required methods

fn into(self) -> Self::Parser

Loading content...

Implementations on Foreign Types

impl<T, E> IntoParser for Result<T, E>[src]

type Item = T

type Next = ()

type Error = Error<E>

type Parser = JustResult<T, E>

Loading content...

Implementors

impl<T> IntoParser for T where
    T: Parser
[src]

type Item = Self::Item

type Next = Self::Next

type Error = Self::Error

type Parser = Self

Loading content...