Struct lib_ruby_parser::nodes::For [−][src]
Represents a for
loop
Fields
iterator: Ptr<Node>
Variable that is used in loop, Lvasgn("a")
in for a in b; end
iteratee: Ptr<Node>
Collection that is for iteration. Lvar("b")
in for a in b; end
body: MaybePtr<Node>
Body of the loop. None
if there’s no body
keyword_l: LocPtr
Location of the for
keyword
for a in b; end
~~~
operator_l: LocPtr
Location of the in
keyword
for a in b; end
~~
begin_l: LocPtr
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: LocPtr
Location of the end
keyword
for a in b; end
~~~
expression_l: LocPtr
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][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,