pub enum Exp_ {
    Dereference(Box<Exp>),
    UnaryExp(UnaryOpBox<Exp>),
    BinopExp(Box<Exp>, BinOpBox<Exp>),
    Value(CopyableVal),
    Pack(StructNameVec<Type>, ExpFields),
    Borrow {
        is_mutable: bool,
        exp: Box<Exp>,
        field: FieldIdent,
    },
    Move(Var),
    Copy(Var),
    BorrowLocal(boolVar),
    FunctionCall(FunctionCallBox<Exp>),
    ExprList(Vec<Exp>),
}
Expand description

Enum for all expressions

Variants

Dereference(Box<Exp>)

*e

UnaryExp(UnaryOpBox<Exp>)

op e

BinopExp(Box<Exp>, BinOpBox<Exp>)

e_1 op e_2

Value(CopyableVal)

Wrapper to lift CopyableVal into Exp v

Pack(StructNameVec<Type>, ExpFields)

Takes the given field values and instantiates the struct Returns a fresh StructInstance whose type and kind (resource or otherwise) as the current struct class (i.e., the class of the method we’re currently executing). n { f_1: e_1, ... , f_j: e_j }

Borrow

Fields

is_mutable: bool

mutable or not

exp: Box<Exp>

the expression containing the reference

field: FieldIdent

the field being borrowed

&e.f, &mut e.f

Move(Var)

move(x)

Copy(Var)

copy(x)

BorrowLocal(boolVar)

&x or &mut x

FunctionCall(FunctionCallBox<Exp>)

f(e) or f(e_1, e_2, ..., e_j)

ExprList(Vec<Exp>)

(e_1, e_2, e_3, …, e_j)

Implementations

Creates a new address Exp with no location information

Creates a new value Exp with no location information

Creates a new u64 Exp with no location information

Creates a new bool Exp with no location information

Creates a new bytearray Exp with no location information

Creates a new pack/struct-instantiation Exp with no location information

Creates a new binary operator Exp with no location information

Creates a new e+e Exp with no location information

Creates a new e-e Exp with no location information

Creates a new *e Exp with no location information

Creates a new borrow field Exp with no location information

Creates a new copy-local Exp with no location information

Creates a new move-local Exp with no location information

Creates a new function call Exp with no location information

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.