#[repr(u8)]pub enum LexAct1 {
Bkslash = 0,
Comment = 1,
Newlin = 2,
Semi = 3,
Amper = 5,
Bar = 6,
Inpar = 7,
Outpar = 8,
Inang = 13,
Outang = 14,
Other = 15,
}Expand description
Lexer action codes for first character of token
Variants§
Bkslash = 0
Comment = 1
Newlin = 2
Semi = 3
Amper = 5
Bar = 6
Inpar = 7
Outpar = 8
Inang = 13
Outang = 14
Other = 15
Trait Implementations§
impl Copy for LexAct1
impl Eq for LexAct1
impl StructuralPartialEq for LexAct1
Auto Trait Implementations§
impl Freeze for LexAct1
impl RefUnwindSafe for LexAct1
impl Send for LexAct1
impl Sync for LexAct1
impl Unpin for LexAct1
impl UnsafeUnpin for LexAct1
impl UnwindSafe for LexAct1
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