pub enum PreprocElifCondition<'tree> {
BinaryExpression(Box<BinaryExpression<'tree>>),
CallExpression(Box<CallExpression<'tree>>),
CharLiteral(Box<CharLiteral<'tree>>),
Identifier(Box<Identifier<'tree>>),
NumberLiteral(Box<NumberLiteral<'tree>>),
ParenthesizedExpression(Box<ParenthesizedExpression<'tree>>),
PreprocDefined(Box<PreprocDefined<'tree>>),
UnaryExpression(Box<UnaryExpression<'tree>>),
}Variants§
BinaryExpression(Box<BinaryExpression<'tree>>)
CallExpression(Box<CallExpression<'tree>>)
CharLiteral(Box<CharLiteral<'tree>>)
Identifier(Box<Identifier<'tree>>)
NumberLiteral(Box<NumberLiteral<'tree>>)
ParenthesizedExpression(Box<ParenthesizedExpression<'tree>>)
PreprocDefined(Box<PreprocDefined<'tree>>)
UnaryExpression(Box<UnaryExpression<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for PreprocElifCondition<'tree>
impl<'tree> Clone for PreprocElifCondition<'tree>
Source§fn clone(&self) -> PreprocElifCondition<'tree>
fn clone(&self) -> PreprocElifCondition<'tree>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'tree> Debug for PreprocElifCondition<'tree>
impl<'tree> Debug for PreprocElifCondition<'tree>
Source§impl<'tree> FromNode<'tree> for PreprocElifCondition<'tree>
impl<'tree> FromNode<'tree> for PreprocElifCondition<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for PreprocElifCondition<'tree>
impl<'tree> RefUnwindSafe for PreprocElifCondition<'tree>
impl<'tree> Send for PreprocElifCondition<'tree>
impl<'tree> Sync for PreprocElifCondition<'tree>
impl<'tree> Unpin for PreprocElifCondition<'tree>
impl<'tree> UnsafeUnpin for PreprocElifCondition<'tree>
impl<'tree> UnwindSafe for PreprocElifCondition<'tree>
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