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