[][src]Trait rsql_rs::parser::Parser

pub trait Parser {
    type R: RuleType;
    fn parse_to_node(code: &str) -> Result<Expr, ParserError>;
fn default_comparisons(
    ) -> &'static HashMap<&'static str, &'static Comparison>; }

Associated Types

type R: RuleType

Loading content...

Required methods

fn parse_to_node(code: &str) -> Result<Expr, ParserError>

fn default_comparisons() -> &'static HashMap<&'static str, &'static Comparison>

Loading content...

Implementors

impl Parser for FiqlParser[src]

type R = Rule

Loading content...