pub struct CompiledModule {
Show 17 fields pub version: u32, pub self_module_handle_idx: ModuleHandleIndex, pub module_handles: Vec<ModuleHandle>, pub struct_handles: Vec<StructHandle>, pub function_handles: Vec<FunctionHandle>, pub field_handles: Vec<FieldHandle>, pub friend_decls: Vec<ModuleHandle>, pub struct_def_instantiations: Vec<StructDefInstantiation>, pub function_instantiations: Vec<FunctionInstantiation>, pub field_instantiations: Vec<FieldInstantiation>, pub signatures: SignaturePool, pub identifiers: IdentifierPool, pub address_identifiers: AddressIdentifierPool, pub constant_pool: ConstantPool, pub metadata: Vec<Metadata>, pub struct_defs: Vec<StructDefinition>, pub function_defs: Vec<FunctionDefinition>,
}
Expand description

A CompiledModule defines the structure of a module which is the unit of published code.

A CompiledModule contains a definition of types (with their fields) and functions. It is a unit of code that can be used by transactions or other modules.

A module is published as a single entry and it is retrieved as a single blob.

Fields

version: u32

Version number found during deserialization

self_module_handle_idx: ModuleHandleIndex

Handle to self.

module_handles: Vec<ModuleHandle>

Handles to external dependency modules and self.

struct_handles: Vec<StructHandle>

Handles to external and internal types.

function_handles: Vec<FunctionHandle>

Handles to external and internal functions.

field_handles: Vec<FieldHandle>

Handles to fields.

friend_decls: Vec<ModuleHandle>

Friend declarations, represented as a collection of handles to external friend modules.

struct_def_instantiations: Vec<StructDefInstantiation>

Struct instantiations.

function_instantiations: Vec<FunctionInstantiation>

Function instantiations.

field_instantiations: Vec<FieldInstantiation>

Field instantiations.

signatures: SignaturePool

Locals signature pool. The signature for all locals of the functions defined in the module.

identifiers: IdentifierPool

All identifiers used in this module.

address_identifiers: AddressIdentifierPool

All address identifiers used in this module.

constant_pool: ConstantPool

Constant pool. The constant values used in the module.

metadata: Vec<Metadata>struct_defs: Vec<StructDefinition>

Types defined in this module.

function_defs: Vec<FunctionDefinition>

Function defined in this module.

Implementations

Deserialize a &u8 slice into a CompiledModule instance.

Returns the count of a specific IndexKind

Returns the code key of module_handle

Returns the code key of self

Serializes a CompiledModule into a binary. The mutable Vec<u8> will contain the binary blob on return.

Serialize into binary, at given version.

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

Returns the “default value” for a type. Read more

Returns the CompiledModule that will be used for accesses.

Returns the ModuleHandle for self.

Returns the name of the module.

Returns the address of the module.

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.

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.