pub struct FunctionEnv<'env> {
    pub module_env: ModuleEnv<'env>,
    /* private fields */
}

Fields

module_env: ModuleEnv<'env>

Reference to enclosing module.

Implementations

Returns the name of this function.

Gets full name as string.

Returns the VM identifier for this function

Gets the id of this function.

Gets the qualified id of this function.

Get documentation associated with this function.

Gets the definition index of this function.

Shortcut for accessing the symbol pool.

Returns the location of this function.

Returns the attributes of this function.

Returns the location of the specification block of this function. If the function has none, returns that of the function itself.

Returns the location of the bytecode at the given offset.

Returns the bytecode associated with this function.

Returns the value of a boolean pragma for this function. This first looks up a pragma in this function, then the enclosing module, and finally uses the provided default. value

Returns true if the value of a boolean pragma for this function is false.

Returns whether the value of a numeric pragma is explicitly set for this function.

Returns the value of a numeric pragma for this function. This first looks up a pragma in this function, then the enclosing module, and finally uses the provided default. value

Returns the value of a pragma representing an identifier for this function. If such pragma is not specified for this function, None is returned.

Returns the FunctionEnv of the function identified by the pragma, if the pragma exists and its value represents a function in the system.

Returns true if this function is native.

Returns true if this function has the pragma intrinsic set to true.

Returns true if function is either native or intrinsic.

Returns true if this is the well-known native or intrinsic function of the given name. The function must reside either in stdlib or extlib address domain.

Returns true if this function is opaque.

Return the visibility of this function

source

pub fn is_entry(&self) -> bool

Return true if the function is an entry fucntion

Return the visibility string for this function. Useful for formatted printing.

Return whether this function is exposed outside of the module.

Return whether this function is exposed outside of the module.

Returns true if the function is a script function

Return true if this function is a friend function

Returns true if invariants are declared disabled in body of function

Returns true if invariants are declared disabled in body of function

Returns true if this function mutates any references (i.e. has &mut parameters).

Returns the name of the friend(the only allowed caller) of this function, if there is one.

Returns true if a friend is specified for this function.

Returns the FunctionEnv of the friend function if the friend is specified and the friend was compiled into the environment.

Returns the FunctionEnv of the transitive friend of the function. For example, if f has a friend g and g has a friend h, then f’s transitive friend is h. If a friend is not specified then the function itself is returned.

Returns the type parameters associated with this function.

Returns the type parameters with the real names.

Return the number of type parameters for self

Return true if idx is a formal parameter index

Return true if this is a named parameter of this function.

Returns the parameter types associated with this function

Returns the regular parameters associated with this function.

Returns return types of this function.

Returns return type at given index.

Returns the number of return values of this function.

Get the name to be used for a local. If the local is an argument, use that for naming, otherwise generate a unique name.

Returns true if the index is for a temporary, not user declared local.

Gets the number of proper locals of this function. Those are locals which are declared by the user and also have a user assigned name which can be discovered via get_local_name. Note we may have more anonymous locals generated e.g by the ‘stackless’ transformation.

Gets the type of the local at index. This must use an index in the range as determined by get_local_count.

Returns associated specification.

Returns the acquired global resource types.

Computes the modified targets of the spec clause, as a map from resource type names to resource indices (list of types and address).

Determine whether the function is target of verification.

Returns true if either the name or simple name of this function matches the given string

Determine whether this function is explicitly deactivated for verification.

Get the functions that call this one

Get the functions that this one calls

Get the transitive closure of the called functions

Returns the function name excluding the address and the module name

Returns the function name with the module name excluding the address

Produce a TypeDisplayContext to print types within the scope of this env

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

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

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.