Struct move_binary_format::file_format::FunctionDefinition
source · [−]pub struct FunctionDefinition {
pub function: FunctionHandleIndex,
pub visibility: Visibility,
pub is_entry: bool,
pub acquires_global_resources: Vec<StructDefinitionIndex>,
pub code: Option<CodeUnit>,
}
Expand description
A FunctionDefinition
is the implementation of a function. It defines
the prototype of the function and the function body.
Fields
function: FunctionHandleIndex
The prototype of the function (module, name, signature).
visibility: Visibility
The visibility of this function.
is_entry: bool
Marker if the function is intended as an entry function. That is
acquires_global_resources: Vec<StructDefinitionIndex>
List of locally defined types (declared in this module) with the Key
ability
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
Not in the signature as it is not needed outside of the declaring module
Note, there is no SignatureIndex with each struct definition index, so all instantiations of that type are considered as being acquired
code: Option<CodeUnit>
Code for this function.
Implementations
Trait Implementations
sourceimpl Clone for FunctionDefinition
impl Clone for FunctionDefinition
sourcefn clone(&self) -> FunctionDefinition
fn clone(&self) -> FunctionDefinition
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 FunctionDefinition
impl Debug for FunctionDefinition
sourceimpl Default for FunctionDefinition
impl Default for FunctionDefinition
sourcefn default() -> FunctionDefinition
fn default() -> FunctionDefinition
Returns the “default value” for a type. Read more
sourceimpl PartialEq<FunctionDefinition> for FunctionDefinition
impl PartialEq<FunctionDefinition> for FunctionDefinition
sourcefn eq(&self, other: &FunctionDefinition) -> bool
fn eq(&self, other: &FunctionDefinition) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &FunctionDefinition) -> bool
fn ne(&self, other: &FunctionDefinition) -> bool
This method tests for !=
.
impl Eq for FunctionDefinition
impl StructuralEq for FunctionDefinition
impl StructuralPartialEq for FunctionDefinition
Auto Trait Implementations
impl RefUnwindSafe for FunctionDefinition
impl Send for FunctionDefinition
impl Sync for FunctionDefinition
impl Unpin for FunctionDefinition
impl UnwindSafe for FunctionDefinition
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