BoolTagExprLexicalParse

Trait BoolTagExprLexicalParse 

Source
pub trait BoolTagExprLexicalParse: ToString {
    // Required method
    fn lexical_parse(self) -> Result<LexicalTokenStream, ParseError>;
}
Expand description

Implementing types can be lexically parsed to a token stream

Required Methods§

Source

fn lexical_parse(self) -> Result<LexicalTokenStream, ParseError>

Lexically parse value

Implementors§

Source§

impl<T: ToString> BoolTagExprLexicalParse for T

Blanket implementation of lexical parsing for any type that implements ToString