pub enum ParserAtnSimulatorError {
MissingAtnState(usize),
MissingDfaState(usize),
NoViableAlt {
symbol: i32,
index: usize,
},
PredictionRequiresMoreLookahead,
UnknownDecision(usize),
}Variants§
MissingAtnState(usize)
MissingDfaState(usize)
NoViableAlt
PredictionRequiresMoreLookahead
UnknownDecision(usize)
Trait Implementations§
Source§impl Clone for ParserAtnSimulatorError
impl Clone for ParserAtnSimulatorError
Source§fn clone(&self) -> ParserAtnSimulatorError
fn clone(&self) -> ParserAtnSimulatorError
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 moreSource§impl Debug for ParserAtnSimulatorError
impl Debug for ParserAtnSimulatorError
impl Eq for ParserAtnSimulatorError
Source§impl PartialEq for ParserAtnSimulatorError
impl PartialEq for ParserAtnSimulatorError
impl StructuralPartialEq for ParserAtnSimulatorError
Auto Trait Implementations§
impl Freeze for ParserAtnSimulatorError
impl RefUnwindSafe for ParserAtnSimulatorError
impl Send for ParserAtnSimulatorError
impl Sync for ParserAtnSimulatorError
impl Unpin for ParserAtnSimulatorError
impl UnsafeUnpin for ParserAtnSimulatorError
impl UnwindSafe for ParserAtnSimulatorError
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