pub struct LexicalTokenStream(/* private fields */);Expand description
A stream of lexical Tokens
Implementations§
Trait Implementations§
Source§impl Clone for LexicalTokenStream
impl Clone for LexicalTokenStream
Source§fn clone(&self) -> LexicalTokenStream
fn clone(&self) -> LexicalTokenStream
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LexicalTokenStream
impl Debug for LexicalTokenStream
Auto Trait Implementations§
impl Freeze for LexicalTokenStream
impl RefUnwindSafe for LexicalTokenStream
impl Send for LexicalTokenStream
impl Sync for LexicalTokenStream
impl Unpin for LexicalTokenStream
impl UnwindSafe for LexicalTokenStream
Blanket Implementations§
Source§impl<T> BoolTagExprLexicalParse for Twhere
T: ToString,
impl<T> BoolTagExprLexicalParse for Twhere
T: ToString,
Source§fn lexical_parse(self) -> Result<LexicalTokenStream, ParseError>
fn lexical_parse(self) -> Result<LexicalTokenStream, ParseError>
Lexically parse value
Source§impl<T> BoolTagExprSyntaxParse<T> for Twhere
T: BoolTagExprLexicalParse,
impl<T> BoolTagExprSyntaxParse<T> for Twhere
T: BoolTagExprLexicalParse,
Source§fn syntax_parse(self) -> Result<BoolTagExpr, ParseError>
fn syntax_parse(self) -> Result<BoolTagExpr, ParseError>
Lexically and then syntactically parse the value into a boolean
expression tree
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more