[][src]Struct full_moon::ast::If

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

An if statement

Methods

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

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

The if token

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

The condition of the if statement, condition in if condition then

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

The then token

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

The block inside the initial if statement

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

The else token if one exists

pub fn else_if(&self) -> Option<&Vec<ElseIf<'a>>>[src]

If there are elseif conditions, returns a vector of them Expression is the condition, block is the code if the condition is true

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

The code inside an else block if one exists

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

The end token

Trait Implementations

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

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

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

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

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

type Owned = If<'static>

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

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

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

impl<'a> StructuralPartialEq for If<'a>[src]

Auto Trait Implementations

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

impl<'a> Send for If<'a>

impl<'a> Sync for If<'a>

impl<'a> Unpin for If<'a>

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

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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[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.