pub enum LValue {
Identifier(InternSymbol),
Attribute(Box<AttributeTarget>),
Index(Box<IndexTarget>),
Tuple(Box<[LValue]>),
Pack(Option<Box<LValue>>),
Modifier {
modifier: AssignType,
lvalue: Box<LValue>,
},
}
Variants§
Identifier(InternSymbol)
Attribute(Box<AttributeTarget>)
Index(Box<IndexTarget>)
Tuple(Box<[LValue]>)
Pack(Option<Box<LValue>>)
Modifier
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LValue
impl RefUnwindSafe for LValue
impl Send for LValue
impl Sync for LValue
impl Unpin for LValue
impl UnwindSafe for LValue
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