Struct move_ir_types::ast::Function_
source · [−]pub struct Function_ {
pub visibility: FunctionVisibility,
pub is_entry: bool,
pub signature: FunctionSignature,
pub acquires: Vec<StructName>,
pub specifications: Vec<Condition>,
pub body: FunctionBody,
}
Expand description
A Move function/procedure
Fields
visibility: FunctionVisibility
The visibility
is_entry: bool
Is entry function
signature: FunctionSignature
The type signature
acquires: Vec<StructName>
List of nominal resources (declared in this module) that the procedure might access Either through: BorrowGlobal, MoveFrom, or transitively through another procedure This list of acquires grants the borrow checker the ability to statically verify the safety of references into global storage
specifications: Vec<Condition>
List of specifications for the Move prover (experimental)
body: FunctionBody
The code for the procedure
Implementations
sourceimpl Function_
impl Function_
sourcepub fn new(
visibility: FunctionVisibility,
is_entry: bool,
formals: Vec<(Var, Type)>,
return_type: Vec<Type>,
type_parameters: Vec<(TypeVar, BTreeSet<Ability>)>,
acquires: Vec<StructName>,
specifications: Vec<Condition>,
body: FunctionBody
) -> Self
pub fn new(
visibility: FunctionVisibility,
is_entry: bool,
formals: Vec<(Var, Type)>,
return_type: Vec<Type>,
type_parameters: Vec<(TypeVar, BTreeSet<Ability>)>,
acquires: Vec<StructName>,
specifications: Vec<Condition>,
body: FunctionBody
) -> Self
Creates a new function declaration from the components of the function
See the declaration of the struct Function
for more details
Trait Implementations
impl StructuralPartialEq for Function_
Auto Trait Implementations
impl RefUnwindSafe for Function_
impl Send for Function_
impl Sync for Function_
impl Unpin for Function_
impl UnwindSafe for Function_
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