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

Returns whether the FunctionDefinition is native.

A native function implemented in Rust.

An entry function, intended to be used as an entry point to execution

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.