[][src]Struct full_moon::ast::Repeat

pub struct Repeat<'a> { /* fields omitted */ }

A repeat loop

Methods

impl<'a> Repeat<'a>[src]

pub fn repeat_token(&self) -> &TokenReference<'a>[src]

The repeat token

pub fn block(&self) -> &Block<'a>[src]

The code inside the repeat block

pub fn until_token(&self) -> &TokenReference<'a>[src]

The until token

pub fn until(&self) -> &Expression<'a>[src]

The condition for the until part

Trait Implementations

impl<'a> Owned for Repeat<'a>[src]

type Owned = Repeat<'static>

What an owned version of the object looks like. Usually contains a 'static lifetime.

impl<'a> Node for Repeat<'a>[src]

impl<'a> Clone for Repeat<'a>[src]

impl<'a> PartialEq<Repeat<'a>> for Repeat<'a>[src]

impl<'a> Debug for Repeat<'a>[src]

impl<'a> Serialize for Repeat<'a>[src]

impl<'de: 'a, 'a> Deserialize<'de> for Repeat<'a>[src]

Auto Trait Implementations

impl<'a> Send for Repeat<'a>

impl<'a> Sync for Repeat<'a>

impl<'a> Unpin for Repeat<'a>

impl<'a> !UnwindSafe for Repeat<'a>

impl<'a> !RefUnwindSafe for Repeat<'a>

Blanket Implementations

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.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]