pub struct RootVarExpression<'s> {
    pub root: &'s Token<'s>,
    pub name: Identifier<'s>,
}Expand description
A reference to a variable in the root table.
Grammar: :: Identifier
Fields§
§root: &'s Token<'s>§name: Identifier<'s>Trait Implementations§
Source§impl<'s> Clone for RootVarExpression<'s>
 
impl<'s> Clone for RootVarExpression<'s>
Source§fn clone(&self) -> RootVarExpression<'s>
 
fn clone(&self) -> RootVarExpression<'s>
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 moreAuto Trait Implementations§
impl<'s> Freeze for RootVarExpression<'s>
impl<'s> RefUnwindSafe for RootVarExpression<'s>
impl<'s> Send for RootVarExpression<'s>
impl<'s> Sync for RootVarExpression<'s>
impl<'s> Unpin for RootVarExpression<'s>
impl<'s> UnwindSafe for RootVarExpression<'s>
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