pub enum LocationExpression {
Variable(Variable),
IndexAccess(Box<Expression>, Box<Expression>),
FieldAccess(Box<Expression>, Node),
}
Variants§
Variable(Variable)
IndexAccess(Box<Expression>, Box<Expression>)
FieldAccess(Box<Expression>, Node)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LocationExpression
impl RefUnwindSafe for LocationExpression
impl Send for LocationExpression
impl Sync for LocationExpression
impl Unpin for LocationExpression
impl UnwindSafe for LocationExpression
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