Struct lib_ruby_parser::nodes::Until[][src]

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,
}

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 Clone for Until[src]

impl Debug for Until[src]

impl PartialEq<Until> for Until[src]

impl StructuralPartialEq for Until[src]

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

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.