Struct lib_ruby_parser::nodes::While
source · [−]#[repr(C)]pub struct While {
pub cond: Box<Node>,
pub body: Option<Box<Node>>,
pub keyword_l: Loc,
pub begin_l: Option<Loc>,
pub end_l: Option<Loc>,
pub expression_l: Loc,
}Expand description
Represents while loop
Fields
cond: Box<Node>Condition of the loop
body: Option<Box<Node>>Body of the loop.
None if body is empty
keyword_l: LocLocation of the while keyword
while cond do; foo; end
~~~~~begin_l: Option<Loc>Location of the do keyword
while cond do; foo; end
~~do is optional, and so begin_l can be None
end_l: Option<Loc>Location of the end keyword
while cond do; foo; end
~~~None if loop is a modifier (i.e. foo while bar)
expression_l: LocLocation of the full expression
while cond do; foo; end
~~~~~~~~~~~~~~~~~~~~~~~
foo while bar
~~~~~~~~~~~~~Trait Implementations
impl StructuralPartialEq for While
Auto Trait Implementations
impl RefUnwindSafe for While
impl Send for While
impl Sync for While
impl Unpin for While
impl UnwindSafe for While
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