[][src]Struct lib_ruby_parser::nodes::For

pub struct For {
    pub iterator: Node,
    pub iteratee: Node,
    pub body: Option<Node>,
    pub keyword_l: Range,
    pub operator_l: Range,
    pub begin_l: Range,
    pub end_l: Range,
    pub expression_l: Range,
}

Represents a for loop

Fields

iterator: Node

Variable that is used in loop, Lvasgn("a") in for a in b; end

iteratee: Node

Collection that is for iteration. Lvar("b") in for a in b; end

body: Option<Node>

Body of the loop. None if there's no body

keyword_l: Range

Location of the for keyword

for a in b; end
~~~
operator_l: Range

Location of the in keyword

for a in b; end
      ~~
begin_l: Range

Location of the do keyword

for a in b do; end
           ~~

Note: this do is optional, and so begin_l can be None.

end_l: Range

Location of the end keyword

for a in b; end
            ~~~
expression_l: Range

Location of the full expression

for a in b; end
~~~~~~~~~~~~~~~

Trait Implementations

impl Clone for For[src]

impl Debug for For[src]

impl PartialEq<For> for For[src]

impl StructuralPartialEq for For[src]

Auto Trait Implementations

impl RefUnwindSafe for For

impl Send for For

impl Sync for For

impl Unpin for For

impl UnwindSafe for For

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.