Struct move_binary_format::file_format::ModuleHandle
source · [−]pub struct ModuleHandle {
pub address: AddressIdentifierIndex,
pub name: IdentifierIndex,
}
Expand description
A ModuleHandle
is a reference to a MOVE module. It is composed by an address
and a name
.
A ModuleHandle
uniquely identifies a code entity in the blockchain.
The address
is a reference to the account that holds the code and the name
is used as a
key in order to load the module.
Modules live in the code namespace of an DiemAccount.
Modules introduce a scope made of all types defined in the module and all functions. Type definitions (fields) are private to the module. Outside the module a Type is an opaque handle.
Fields
address: AddressIdentifierIndex
Index into the AddressIdentifierIndex
. Identifies module-holding account’s address.
name: IdentifierIndex
The name of the module published in the code section for the account in address
.
Trait Implementations
sourceimpl Clone for ModuleHandle
impl Clone for ModuleHandle
sourcefn clone(&self) -> ModuleHandle
fn clone(&self) -> ModuleHandle
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 ModuleHandle
impl Debug for ModuleHandle
sourceimpl Hash for ModuleHandle
impl Hash for ModuleHandle
sourceimpl Ord for ModuleHandle
impl Ord for ModuleHandle
sourceimpl PartialEq<ModuleHandle> for ModuleHandle
impl PartialEq<ModuleHandle> for ModuleHandle
sourcefn eq(&self, other: &ModuleHandle) -> bool
fn eq(&self, other: &ModuleHandle) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ModuleHandle) -> bool
fn ne(&self, other: &ModuleHandle) -> bool
This method tests for !=
.
sourceimpl PartialOrd<ModuleHandle> for ModuleHandle
impl PartialOrd<ModuleHandle> for ModuleHandle
sourcefn partial_cmp(&self, other: &ModuleHandle) -> Option<Ordering>
fn partial_cmp(&self, other: &ModuleHandle) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl Eq for ModuleHandle
impl StructuralEq for ModuleHandle
impl StructuralPartialEq for ModuleHandle
Auto Trait Implementations
impl RefUnwindSafe for ModuleHandle
impl Send for ModuleHandle
impl Sync for ModuleHandle
impl Unpin for ModuleHandle
impl UnwindSafe for ModuleHandle
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