pub enum Arg<'tree> {
Primary(Box<Primary<'tree>>),
Assignment(Box<Assignment<'tree>>),
Binary(Box<Binary<'tree>>),
Conditional(Box<Conditional<'tree>>),
OperatorAssignment(Box<OperatorAssignment<'tree>>),
Range(Box<Range<'tree>>),
Unary(Box<Unary<'tree>>),
}Variants§
Primary(Box<Primary<'tree>>)
Assignment(Box<Assignment<'tree>>)
Binary(Box<Binary<'tree>>)
Conditional(Box<Conditional<'tree>>)
OperatorAssignment(Box<OperatorAssignment<'tree>>)
Range(Box<Range<'tree>>)
Unary(Box<Unary<'tree>>)
Trait Implementations§
impl<'tree> Eq for Arg<'tree>
impl<'tree> StructuralPartialEq for Arg<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for Arg<'tree>
impl<'tree> RefUnwindSafe for Arg<'tree>
impl<'tree> Send for Arg<'tree>
impl<'tree> Sync for Arg<'tree>
impl<'tree> Unpin for Arg<'tree>
impl<'tree> UnsafeUnpin for Arg<'tree>
impl<'tree> UnwindSafe for Arg<'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