Struct move_binary_format::file_format::CompiledScript
source · [−]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: SignaturePool
identifiers: 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: CodeUnit
type_parameters: Vec<AbilitySet>
parameters: SignatureIndex
Implementations
sourceimpl CompiledScript
impl CompiledScript
sourcepub fn deserialize(binary: &[u8]) -> BinaryLoaderResult<Self>
pub fn deserialize(binary: &[u8]) -> BinaryLoaderResult<Self>
Deserializes a &u8 slice into a CompiledScript
instance.
sourceimpl CompiledScript
impl CompiledScript
sourcepub const MAIN_INDEX: FunctionDefinitionIndex
pub const MAIN_INDEX: FunctionDefinitionIndex
Returns the index of main
in case a script is converted to a module.
Trait Implementations
sourceimpl Clone for CompiledScript
impl Clone for CompiledScript
sourcefn clone(&self) -> CompiledScript
fn clone(&self) -> CompiledScript
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for CompiledScript
impl Debug for CompiledScript
sourceimpl Default for CompiledScript
impl Default for CompiledScript
sourcefn default() -> CompiledScript
fn default() -> CompiledScript
Returns the “default value” for a type. Read more
sourceimpl PartialEq<CompiledScript> for CompiledScript
impl PartialEq<CompiledScript> for CompiledScript
sourcefn eq(&self, other: &CompiledScript) -> bool
fn eq(&self, other: &CompiledScript) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &CompiledScript) -> bool
fn ne(&self, other: &CompiledScript) -> bool
This method tests for !=
.
sourceimpl ScriptAccess for CompiledScript
impl ScriptAccess for CompiledScript
sourcefn as_script(&self) -> &CompiledScript
fn as_script(&self) -> &CompiledScript
Returns the CompiledScript
that will be used for accesses.
fn module_handle_at(&self, idx: ModuleHandleIndex) -> &ModuleHandle
fn struct_handle_at(&self, idx: StructHandleIndex) -> &StructHandle
fn function_handle_at(&self, idx: FunctionHandleIndex) -> &FunctionHandle
fn signature_at(&self, idx: SignatureIndex) -> &Signature
fn identifier_at(&self, idx: IdentifierIndex) -> &IdentStr
fn address_identifier_at(&self, idx: AddressIdentifierIndex) -> &AccountAddress
fn constant_at(&self, idx: ConstantPoolIndex) -> &Constant
fn function_instantiation_at(
&self,
idx: FunctionInstantiationIndex
) -> &FunctionInstantiation
fn module_handles(&self) -> &[ModuleHandle]
fn struct_handles(&self) -> &[StructHandle]
fn function_handles(&self) -> &[FunctionHandle]
fn function_instantiations(&self) -> &[FunctionInstantiation]
fn signatures(&self) -> &[Signature]
fn constant_pool(&self) -> &[Constant]
fn identifiers(&self) -> &[Identifier]
fn address_identifiers(&self) -> &[AccountAddress]
fn version(&self) -> u32
fn code(&self) -> &CodeUnit
fn immediate_dependencies(&self) -> Vec<ModuleId>ⓘNotable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
A: Allocator,
A: Allocator,
impl Eq for CompiledScript
impl StructuralEq for CompiledScript
impl StructuralPartialEq for CompiledScript
Auto Trait Implementations
impl RefUnwindSafe for CompiledScript
impl Send for CompiledScript
impl Sync for CompiledScript
impl Unpin for CompiledScript
impl UnwindSafe for CompiledScript
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more