Struct lib_ruby_parser::nodes::Gvasgn
source · [−]#[repr(C)]pub struct Gvasgn {
pub name: String,
pub value: Option<Box<Node>>,
pub name_l: Loc,
pub operator_l: Option<Loc>,
pub expression_l: Loc,
}
Expand description
Represents global variable assignment (i.e. $foo = 42
)
Fields
name: String
Name of the global variable, String("$foo")
for $foo
value: Option<Box<Node>>
Value that is assigned to global variable, Int("42")
for $foo = 42
None
if global variable assignment is a part of the multi-assignment.
In such case value
is a part of the Masgn
node.
name_l: Loc
Location of the global variable name
$foo = 42
~~~~
operator_l: Option<Loc>
Location of the =
operator
$foo = 42
~
None
if global variable assignment is a part of the multi-assignment.
In such case =
operator belongs to the Masgn
node.
expression_l: Loc
Location of the full expression
$foo = 42
~~~~~~~~~
Trait Implementations
impl StructuralPartialEq for Gvasgn
Auto Trait Implementations
impl RefUnwindSafe for Gvasgn
impl Send for Gvasgn
impl Sync for Gvasgn
impl Unpin for Gvasgn
impl UnwindSafe for Gvasgn
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more