pub struct VariableExpr {
pub name: String,
pub location: Location,
}
Expand description
A variable reference expression
Fields§
§name: String
Name of the variable being referenced
location: Location
Source code location information
Trait Implementations§
Auto Trait Implementations§
impl Freeze for VariableExpr
impl RefUnwindSafe for VariableExpr
impl Send for VariableExpr
impl Sync for VariableExpr
impl Unpin for VariableExpr
impl UnwindSafe for VariableExpr
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