pub enum Variants {
List(Vec<Variant>),
AllTokens,
}
Expand description
The variants of an enum node.
Variants§
List(Vec<Variant>)
Explicit list of variants.
AllTokens
The variants are all the tokens in the language.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Variants
impl RefUnwindSafe for Variants
impl Send for Variants
impl Sync for Variants
impl Unpin for Variants
impl UnwindSafe for Variants
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