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

pub struct ExprLet {
    pub attributes: Vec<Attribute>,
    pub let_token: Let,
    pub pat: Pat,
    pub eq: Eq,
    pub expr: Expr,
}

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

Examples

use rune::{testing, ast};

testing::roundtrip::<ast::ExprLet>("let x = 1");
testing::roundtrip::<ast::ExprLet>("#[attr] let a = f()");

Fields

attributes: Vec<Attribute>

The attributes for the let expression

let_token: Let

The let keyword.

pat: Pat

The name of the binding.

eq: Eq

The equality keyword.

expr: Expr

The expression the binding is assigned to.

Implementations

impl ExprLet[src]

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

Parse with the given meta.

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]

impl Eq for ExprLet[src]

impl Parse for ExprLet[src]

impl PartialEq<ExprLet> for ExprLet[src]

impl Spanned for ExprLet[src]

impl StructuralEq for ExprLet[src]

impl StructuralPartialEq for ExprLet[src]

impl ToTokens 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.