[][src]Struct rune::ast::ExprFor

pub struct ExprFor {
    pub label: Option<(Label, Colon)>,
    pub for_: For,
    pub var: Ident,
    pub in_: In,
    pub iter: Box<Expr>,
    pub body: Box<ExprBlock>,
}

A let expression let <name> = <expr>;

Fields

label: Option<(Label, Colon)>

The label of the loop.

for_: For

The for keyword.

var: Ident

The variable binding. TODO: should be a pattern when that is supported.

in_: In

The in keyword.

iter: Box<Expr>

Expression producing the iterator.

body: Box<ExprBlock>

The body of the loop.

Implementations

impl ExprFor[src]

pub fn span(&self) -> Span[src]

Access the span of the expression.

pub fn parse_with_label(
    parser: &mut Parser<'_>,
    label: Option<(Label, Colon)>
) -> Result<Self, ParseError>
[src]

Parse with the given label.

Trait Implementations

impl Clone for ExprFor[src]

impl Debug for ExprFor[src]

Auto Trait Implementations

impl RefUnwindSafe for ExprFor

impl Send for ExprFor

impl Sync for ExprFor

impl Unpin for ExprFor

impl UnwindSafe for ExprFor

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,