pub trait ParseLiteral: Parse {
    fn parse_string_literal(&self, pos: usize, literal: &str) -> RuleResult<()>;
}
Expand description

A parser input type supporting the "literal" syntax.

Required Methods

Attempt to match the literal string at pos, returning whether it matched or failed.

Implementations on Foreign Types

Implementors