[][src]Struct rune::ast::ExprLet

pub struct ExprLet {
    pub let_: Let,
    pub pat: Pat,
    pub eq: Eq,
    pub expr: Box<Expr>,
}

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

Fields

let_: Let

The let keyword.

pat: Pat

The name of the binding.

eq: Eq

The equality keyword.

expr: Box<Expr>

The expression the binding is assigned to.

Implementations

impl ExprLet[src]

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

Access the span of the expression.

pub fn parse_without_eager_brace(
    parser: &mut Parser<'_>
) -> Result<Self, ParseError>
[src]

Parse a let expression without eager bracing.

Trait Implementations

impl Clone for ExprLet[src]

impl Debug for ExprLet[src]

Auto Trait Implementations

impl RefUnwindSafe for ExprLet

impl Send for ExprLet

impl Sync for ExprLet

impl Unpin for ExprLet

impl UnwindSafe for ExprLet

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