pub struct CompiledScript {
Show 13 fields pub version: u32, pub module_handles: Vec<ModuleHandle>, pub struct_handles: Vec<StructHandle>, pub function_handles: Vec<FunctionHandle>, pub function_instantiations: Vec<FunctionInstantiation>, pub signatures: SignaturePool, pub identifiers: IdentifierPool, pub address_identifiers: AddressIdentifierPool, pub constant_pool: ConstantPool, pub metadata: Vec<Metadata>, pub code: CodeUnit, pub type_parameters: Vec<AbilitySet>, pub parameters: SignatureIndex,
}
Expand description

Contains the main function to execute and its dependencies.

A CompiledScript does not have definition tables because it can only have a main(args). A CompiledScript defines the constant pools (string, address, signatures, etc.), the handle tables (external code references) and it has a main definition.

Fields

version: u32

Version number found during deserialization

module_handles: Vec<ModuleHandle>

Handles to all modules referenced.

struct_handles: Vec<StructHandle>

Handles to external/imported types.

function_handles: Vec<FunctionHandle>

Handles to external/imported functions.

function_instantiations: Vec<FunctionInstantiation>

Function instantiations.

signatures: SignaturePoolidentifiers: IdentifierPool

All identifiers used in this transaction.

address_identifiers: AddressIdentifierPool

All address identifiers used in this transaction.

constant_pool: ConstantPool

Constant pool. The constant values used in the transaction.

metadata: Vec<Metadata>code: CodeUnittype_parameters: Vec<AbilitySet>parameters: SignatureIndex

Implementations

Deserializes a &u8 slice into a CompiledScript instance.

Returns the index of main in case a script is converted to a module.

Serializes a CompiledScript 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

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.