Struct lib_ruby_parser::nodes::Lvasgn[][src]

#[repr(C)]pub struct Lvasgn {
    pub name: StringPtr,
    pub value: MaybePtr<Node>,
    pub name_l: LocPtr,
    pub operator_l: MaybeLocPtr,
    pub expression_l: LocPtr,
}

Represents local variable assignment (i.e. foo = 42)

Fields

name: StringPtr

Name of the local variable

value: MaybePtr<Node>

Value that is assigned to a local variable

name_l: LocPtr

Location of the local variable name

foo = 42
~~~
operator_l: MaybeLocPtr

Location of the = operator

foo = 42
    ~

None if local variable assignment is a part of the multi-assignment. In such case value is a part of the Masgn node.

expression_l: LocPtr

Location of the full expression

foo = 42
~~~~~~~~

Trait Implementations

impl Clone for Lvasgn[src]

impl Debug for Lvasgn[src]

impl PartialEq<Lvasgn> for Lvasgn[src]

impl StructuralPartialEq for Lvasgn[src]

Auto Trait Implementations

impl RefUnwindSafe for Lvasgn

impl Send for Lvasgn

impl Sync for Lvasgn

impl Unpin for Lvasgn

impl UnwindSafe for Lvasgn

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.