Struct move_binary_format::normalized::Module
source · [−]pub struct Module {
pub file_format_version: u32,
pub address: AccountAddress,
pub name: Identifier,
pub friends: Vec<ModuleId>,
pub structs: BTreeMap<Identifier, Struct>,
pub exposed_functions: BTreeMap<Identifier, Function>,
}
Expand description
Normalized version of a CompiledModule
: its address, name, struct declarations, and public
function declarations.
Fields
file_format_version: u32
address: AccountAddress
name: Identifier
friends: Vec<ModuleId>
structs: BTreeMap<Identifier, Struct>
exposed_functions: BTreeMap<Identifier, Function>
Implementations
sourceimpl Module
impl Module
sourcepub fn new(m: &CompiledModule) -> Self
pub fn new(m: &CompiledModule) -> Self
Extract a normalized module from a CompiledModule
. The module m
should be verified.
Nothing will break here if that is not the case, but there is little point in computing a
normalized representation of a module that won’t verify (since it can’t be published).
pub fn module_id(&self) -> ModuleId
Trait Implementations
sourceimpl<'de> Deserialize<'de> for Module
impl<'de> Deserialize<'de> for Module
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for Module
impl StructuralEq for Module
impl StructuralPartialEq for Module
Auto Trait Implementations
impl RefUnwindSafe for Module
impl Send for Module
impl Sync for Module
impl Unpin for Module
impl UnwindSafe for Module
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)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more