Struct move_binary_format::file_format::CompiledModule
source · [−]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
sourceimpl CompiledModule
impl CompiledModule
sourcepub fn deserialize(binary: &[u8]) -> BinaryLoaderResult<Self>
pub fn deserialize(binary: &[u8]) -> BinaryLoaderResult<Self>
Deserialize a &u8 slice into a CompiledModule
instance.
pub fn deserialize_no_check_bounds(binary: &[u8]) -> BinaryLoaderResult<Self>
sourceimpl CompiledModule
impl CompiledModule
sourcepub fn kind_count(&self, kind: IndexKind) -> usize
pub fn kind_count(&self, kind: IndexKind) -> usize
Returns the count of a specific IndexKind
sourcepub fn module_id_for_handle(&self, module_handle: &ModuleHandle) -> ModuleId
pub fn module_id_for_handle(&self, module_handle: &ModuleHandle) -> ModuleId
Returns the code key of module_handle
Trait Implementations
sourceimpl Clone for CompiledModule
impl Clone for CompiledModule
sourcefn clone(&self) -> CompiledModule
fn clone(&self) -> CompiledModule
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 CompiledModule
impl Debug for CompiledModule
sourceimpl Default for CompiledModule
impl Default for CompiledModule
sourcefn default() -> CompiledModule
fn default() -> CompiledModule
Returns the “default value” for a type. Read more
sourceimpl ModuleAccess for CompiledModule
impl ModuleAccess for CompiledModule
sourcefn as_module(&self) -> &CompiledModule
fn as_module(&self) -> &CompiledModule
Returns the CompiledModule
that will be used for accesses.
fn self_handle_idx(&self) -> ModuleHandleIndex
sourcefn self_handle(&self) -> &ModuleHandle
fn self_handle(&self) -> &ModuleHandle
Returns the ModuleHandle
for self
.
sourcefn address(&self) -> &AccountAddress
fn address(&self) -> &AccountAddress
Returns the address of the module.
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 field_handle_at(&self, idx: FieldHandleIndex) -> &FieldHandle
fn struct_instantiation_at(
&self,
idx: StructDefInstantiationIndex
) -> &StructDefInstantiation
fn function_instantiation_at(
&self,
idx: FunctionInstantiationIndex
) -> &FunctionInstantiation
fn field_instantiation_at(
&self,
idx: FieldInstantiationIndex
) -> &FieldInstantiation
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 struct_def_at(&self, idx: StructDefinitionIndex) -> &StructDefinition
fn function_def_at(&self, idx: FunctionDefinitionIndex) -> &FunctionDefinition
fn module_handles(&self) -> &[ModuleHandle]
fn struct_handles(&self) -> &[StructHandle]
fn function_handles(&self) -> &[FunctionHandle]
fn field_handles(&self) -> &[FieldHandle]
fn struct_instantiations(&self) -> &[StructDefInstantiation]
fn function_instantiations(&self) -> &[FunctionInstantiation]
fn field_instantiations(&self) -> &[FieldInstantiation]
fn signatures(&self) -> &[Signature]
fn constant_pool(&self) -> &[Constant]
fn identifiers(&self) -> &[Identifier]
fn address_identifiers(&self) -> &[AccountAddress]
fn struct_defs(&self) -> &[StructDefinition]
fn function_defs(&self) -> &[FunctionDefinition]
fn friend_decls(&self) -> &[ModuleHandle]
fn module_id_for_handle(&self, module_handle_idx: &ModuleHandle) -> ModuleId
fn self_id(&self) -> ModuleId
fn version(&self) -> u32
fn immediate_dependencies(&self) -> Vec<ModuleId>ⓘNotable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
A: Allocator,
A: Allocator,
fn immediate_friends(&self) -> Vec<ModuleId>ⓘNotable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
A: Allocator,
A: Allocator,
fn find_struct_def(&self, idx: StructHandleIndex) -> Option<&StructDefinition>
fn find_struct_def_by_name(&self, name: &IdentStr) -> Option<&StructDefinition>
sourceimpl PartialEq<CompiledModule> for CompiledModule
impl PartialEq<CompiledModule> for CompiledModule
sourcefn eq(&self, other: &CompiledModule) -> bool
fn eq(&self, other: &CompiledModule) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &CompiledModule) -> bool
fn ne(&self, other: &CompiledModule) -> bool
This method tests for !=
.
impl Eq for CompiledModule
impl StructuralEq for CompiledModule
impl StructuralPartialEq for CompiledModule
Auto Trait Implementations
impl RefUnwindSafe for CompiledModule
impl Send for CompiledModule
impl Sync for CompiledModule
impl Unpin for CompiledModule
impl UnwindSafe for CompiledModule
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