[][src]Trait luaparser::FastParser

pub trait FastParser {
    type Types: NodeTypes;
    fn parse<'a>(
        &self,
        input: &'a str
    ) -> Result<<Self::Types as NodeTypes>::Block, ParsingError> { ... } }

A trait that creates a parser from the given NodeTypes implementation.

Associated Types

Loading content...

Provided methods

fn parse<'a>(
    &self,
    input: &'a str
) -> Result<<Self::Types as NodeTypes>::Block, ParsingError>

Loading content...

Implementors

impl FastParser for FastParserImpl[src]

Loading content...