pub enum LexicalState {
DEFAULT,
}Expand description
Lexical state enumeration
Represents different lexical states the lexer can be in.
Variants§
DEFAULT
Lexical state: DEFAULT
Trait Implementations§
Source§impl Clone for LexicalState
impl Clone for LexicalState
Source§fn clone(&self) -> LexicalState
fn clone(&self) -> LexicalState
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 LexicalState
impl Debug for LexicalState
Source§impl Hash for LexicalState
impl Hash for LexicalState
Source§impl PartialEq for LexicalState
impl PartialEq for LexicalState
impl Copy for LexicalState
impl Eq for LexicalState
impl StructuralPartialEq for LexicalState
Auto Trait Implementations§
impl Freeze for LexicalState
impl RefUnwindSafe for LexicalState
impl Send for LexicalState
impl Sync for LexicalState
impl Unpin for LexicalState
impl UnsafeUnpin for LexicalState
impl UnwindSafe for LexicalState
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