pub struct ModuleEnv<'env> {
    pub env: &'env GlobalEnv,
    /* private fields */
}
Expand description

Represents a module environment.

Fields

env: &'env GlobalEnv

Reference to the outer env.

Implementations

Returns the id of this module in the global env.

Returns the name of this module.

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

Returns the location of this module.

Returns the attributes of this module.

Returns full name as a string.

Returns the VM identifier for this module

Returns true if this is a module representing a script.

Returns true of this module is target of compilation. A non-target module is a dependency only but not explicitly requested to process.

Returns the path to source file of this module.

Return the set of language storage ModuleId’s that this module’s bytecode depends on (including itself), friend modules are excluded from the return result.

Return the set of language storage ModuleId’s that this module declares as friends

Returns the set of modules that use this one.

Returns the set of modules this one uses.

Returns the set of modules this one declares as friends.

Returns true if the given module is a transitive dependency of this one. The transitive dependency set contains this module and all directly or indirectly used modules (without spec usage).

Returns documentation associated with this module.

Returns spec block documentation infos.

Shortcut for accessing the symbol pool.

Gets the underlying bytecode module.

Gets a NamedConstantEnv in this module by name

Gets a NamedConstantEnv in this module by the constant’s id

Gets a NamedConstantEnv by id

Gets the number of named constants in this module.

Returns iterator over NamedConstantEnvs in this module.

Returns an iterator over NamedConstantEnvs in this module.

Gets a FunctionEnv in this module by name.

Gets a FunctionEnv by id.

Gets a FunctionEnv by id.

Gets the number of functions in this module.

Returns iterator over FunctionEnvs in this module.

Returns iterator over FunctionEnvs in this module.

Gets FunctionEnv for a function used in this module, via the FunctionHandleIndex. The returned function might be from this or another module.

Gets the function id from a definition index.

Gets the function definition index for the given function id. This is always defined.

Gets a StructEnv in this module by name.

Gets a StructEnv in this module by identifier

Gets the struct id from a definition index which must be valid for this environment.

Gets a StructEnv by id.

Gets a StructEnv by id, consuming this module env.

Gets the number of structs in this module.

Returns iterator over structs in this module.

Returns iterator over structs in this module.

Globalizes a signature local to this module.

Globalizes a list of signatures.

Gets a list of type actuals associated with the index in the bytecode.

Retrieve a constant from the pool

Converts a constant to the specified type. The type must correspond to the expected cannonical representation as defined in move_core_types::values

Return the AccountAdress of this module

Retrieve an address identifier from the pool

Returns specification variables of this module.

Gets spec var by id.

Find spec var by name.

Returns specification functions of this module.

Gets spec fun by id.

Gets module specification.

Returns whether a spec fun is ever called or not.

Get all spec fun overloads with the given name.

Disassemble the module bytecode

Return true if the module has any global, module, function, or struct specs

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.