#[non_exhaustive]pub enum YaccKind {
Original(YaccOriginalActionKind),
Grmtools,
Eco,
}
Expand description
The particular Yacc variant this grammar makes use of.
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.
Original(YaccOriginalActionKind)
The original Yacc style as documented by Johnson,
Grmtools
Similar to the original Yacc style, but allowing individual rules’ actions to have their own return type.
Eco
The variant used in the Eco language composition editor
Trait Implementations§
Source§impl ToTokens for YaccKind
impl ToTokens for YaccKind
Source§fn to_tokens(&self, tokens: &mut TokenStream)
fn to_tokens(&self, tokens: &mut TokenStream)
Source§fn to_token_stream(&self) -> TokenStream
fn to_token_stream(&self) -> TokenStream
Source§fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
impl Copy for YaccKind
Auto Trait Implementations§
impl Freeze for YaccKind
impl RefUnwindSafe for YaccKind
impl Send for YaccKind
impl Sync for YaccKind
impl Unpin for YaccKind
impl UnwindSafe for YaccKind
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