pub struct ModuleDefinition {
    pub loc: Loc,
    pub identifier: ModuleIdent,
    pub friends: Vec<ModuleIdent>,
    pub imports: Vec<ImportDefinition>,
    pub explicit_dependency_declarations: Vec<ModuleDependency>,
    pub structs: Vec<StructDefinition>,
    pub constants: Vec<Constant>,
    pub functions: Vec<(FunctionName, Function)>,
    pub synthetics: Vec<SyntheticDefinition>,
}
Expand description

A Move module

Fields

loc: Loc

The location of this module

identifier: ModuleIdent

name and address of the module

friends: Vec<ModuleIdent>

the module’s friends

imports: Vec<ImportDefinition>

the module’s dependencies

explicit_dependency_declarations: Vec<ModuleDependency>

Explicit declaration of dependencies. If not provided, will be inferred based on given dependencies to the IR compiler

structs: Vec<StructDefinition>

the structs (including resources) that the module defines

constants: Vec<Constant>

the constants that the script defines. Only a utility, the identifiers are not carried into the Move bytecode

functions: Vec<(FunctionName, Function)>

the procedure that the module defines

synthetics: Vec<SyntheticDefinition>

the synthetic, specification variables the module defines.

Implementations

Creates a new ModuleDefinition from its string name, dependencies, structs+resources, and procedures Does not verify the correctness of any internal properties of its elements

Return a vector of ModuleId for the external dependencies.

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.