#[non_exhaustive]pub enum StateTableErrorKind<StorageT> {
AcceptReduceConflict(Option<PIdx<StorageT>>),
}
Expand description
The various different possible Yacc parser errors.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Auto Trait Implementations§
impl<StorageT> Freeze for StateTableErrorKind<StorageT>where
StorageT: Freeze,
impl<StorageT> RefUnwindSafe for StateTableErrorKind<StorageT>where
StorageT: RefUnwindSafe,
impl<StorageT> Send for StateTableErrorKind<StorageT>where
StorageT: Send,
impl<StorageT> Sync for StateTableErrorKind<StorageT>where
StorageT: Sync,
impl<StorageT> Unpin for StateTableErrorKind<StorageT>where
StorageT: Unpin,
impl<StorageT> UnwindSafe for StateTableErrorKind<StorageT>where
StorageT: UnwindSafe,
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