Struct move_ir_types::ast::Script
source · [−]pub struct Script {
pub loc: Loc,
pub imports: Vec<ImportDefinition>,
pub explicit_dependency_declarations: Vec<ModuleDependency>,
pub constants: Vec<Constant>,
pub main: Function,
}
Expand description
The Move transaction script to be executed
Fields
loc: Loc
The source location for this script
imports: Vec<ImportDefinition>
The dependencies of main
, i.e. of the transaction script
explicit_dependency_declarations: Vec<ModuleDependency>
Explicit declaration of dependencies. If not provided, will be inferred based on given dependencies to the IR compiler
constants: Vec<Constant>
the constants that the module defines. Only a utility, the identifiers are not carried into the Move bytecode
main: Function
The transaction script’s main
procedure
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Script
impl Send for Script
impl Sync for Script
impl Unpin for Script
impl UnwindSafe for Script
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