#[repr(u8)]pub enum ParserTransitionKind {
Epsilon = 1,
Range = 2,
Rule = 3,
Predicate = 4,
Atom = 5,
Action = 6,
Set = 7,
NotSet = 8,
Wildcard = 9,
Precedence = 10,
}Expand description
Fixed transition tag stored in the packed transition table.
Variants§
Epsilon = 1
Range = 2
Rule = 3
Predicate = 4
Atom = 5
Action = 6
Set = 7
NotSet = 8
Wildcard = 9
Precedence = 10
Trait Implementations§
Source§impl Clone for ParserTransitionKind
impl Clone for ParserTransitionKind
Source§fn clone(&self) -> ParserTransitionKind
fn clone(&self) -> ParserTransitionKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ParserTransitionKind
Source§impl Debug for ParserTransitionKind
impl Debug for ParserTransitionKind
impl Eq for ParserTransitionKind
Source§impl PartialEq for ParserTransitionKind
impl PartialEq for ParserTransitionKind
impl StructuralPartialEq for ParserTransitionKind
Auto Trait Implementations§
impl Freeze for ParserTransitionKind
impl RefUnwindSafe for ParserTransitionKind
impl Send for ParserTransitionKind
impl Sync for ParserTransitionKind
impl Unpin for ParserTransitionKind
impl UnsafeUnpin for ParserTransitionKind
impl UnwindSafe for ParserTransitionKind
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