pub struct Exp { /* private fields */ }
Expand description

An internalized expression. We do use a wrapper around the underlying internement implementation variant to ensure a unique API (LocalIntern and ArcIntern e.g. differ in the presence of the Copy trait, and by wrapping we effectively remove the Copy from LocalIntern).

Methods from Deref<Target = ExpData>

Returns the free local variables, inclusive their types, used in this expression. Result is ordered by occurrence.

Returns the used memory of this expression.

Returns the temporaries used in this expression. Result is ordered by occurrence.

Visits expression, calling visitor on each sub-expression, depth first.

source

pub fn visit_pre_post<F>(&self, visitor: &mut F) where
    F: FnMut(bool, &ExpData), 

Visits expression, calling visitor on each sub-expression. visitor(false, ..) will be called before descending into expression, and visitor(true, ..) after. Notice we use one function instead of two so a lambda can be passed which encapsulates mutable references.

Returns the set of module ids used by this expression.

Extract access to ghost memory from expression. Returns a tuple of the instantiated struct, the field of the selected value, and the expression with the address of the access.

Collect struct-related operations

Collect field-related operations

Collect vector-related operations

Determines whether this expression depends on global memory

Checks whether the expression is pure, i.e. does not depend on memory or mutable variables.

Creates a display of an expression which can be used in formatting.

Trait Implementations

Converts this type into a shared reference of the (usually inferred) input type.

Immutably borrows from an owned value. Read more

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

The resulting type after dereferencing.

Dereferences the value.

Takes an expression and returns expression data.

Converts to this type from the input type.

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. 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

Compare self to key and return true if they are equal.

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

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.