pub enum Lhs<'tree> {
Variable(Box<Variable<'tree>>),
Call(Box<Call<'tree>>),
ElementReference(Box<ElementReference<'tree>>),
False(Box<False<'tree>>),
Nil(Box<Nil<'tree>>),
ScopeResolution(Box<ScopeResolution<'tree>>),
True(Box<True<'tree>>),
}Variants§
Variable(Box<Variable<'tree>>)
Call(Box<Call<'tree>>)
ElementReference(Box<ElementReference<'tree>>)
False(Box<False<'tree>>)
Nil(Box<Nil<'tree>>)
ScopeResolution(Box<ScopeResolution<'tree>>)
True(Box<True<'tree>>)
Trait Implementations§
impl<'tree> Eq for Lhs<'tree>
impl<'tree> StructuralPartialEq for Lhs<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for Lhs<'tree>
impl<'tree> RefUnwindSafe for Lhs<'tree>
impl<'tree> Send for Lhs<'tree>
impl<'tree> Sync for Lhs<'tree>
impl<'tree> Unpin for Lhs<'tree>
impl<'tree> UnsafeUnpin for Lhs<'tree>
impl<'tree> UnwindSafe for Lhs<'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