Struct rune::ast::ExprRange[][src]

pub struct ExprRange {
    pub attributes: Vec<Attribute>,
    pub from: Option<Expr>,
    pub limits: ExprRangeLimits,
    pub to: Option<Expr>,
}

A range expression a .. b or a ..= b.

use rune::{testing, ast};

testing::roundtrip::<ast::ExprRange>("0..42");
testing::roundtrip::<ast::ExprRange>("0..=42");

Fields

attributes: Vec<Attribute>

Attributes associated with the assign expression.

from: Option<Expr>

Start of range.

limits: ExprRangeLimits

...

to: Option<Expr>

End of range.

Trait Implementations

impl Clone for ExprRange[src]

impl Debug for ExprRange[src]

impl Eq for ExprRange[src]

impl Parse for ExprRange[src]

impl PartialEq<ExprRange> for ExprRange[src]

impl Spanned for ExprRange[src]

impl StructuralEq for ExprRange[src]

impl StructuralPartialEq for ExprRange[src]

impl ToTokens for ExprRange[src]

Auto Trait Implementations

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.