pub enum LexerState {
Start,
Ident,
Number,
Operator,
StringStart,
LineComment,
Done,
}Expand description
A lexer state machine with explicit transitions.
Variants§
Start
Initial state
Ident
Scanning identifier
Number
Scanning number
Operator
Scanning operator
StringStart
Scanning string
LineComment
Scanning line comment
Done
Done
Trait Implementations§
Source§impl Clone for LexerState
impl Clone for LexerState
Source§fn clone(&self) -> LexerState
fn clone(&self) -> LexerState
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 LexerState
impl Debug for LexerState
Source§impl PartialEq for LexerState
impl PartialEq for LexerState
impl Eq for LexerState
impl StructuralPartialEq for LexerState
Auto Trait Implementations§
impl Freeze for LexerState
impl RefUnwindSafe for LexerState
impl Send for LexerState
impl Sync for LexerState
impl Unpin for LexerState
impl UnsafeUnpin for LexerState
impl UnwindSafe for LexerState
Blanket Implementations§
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