Struct wasmtime::FuncType [−][src]
pub struct FuncType { /* fields omitted */ }
A descriptor for a function in a WebAssembly module.
WebAssembly functions can have 0 or more parameters and results.
Implementations
impl FuncType
[src]
impl FuncType
[src]pub fn new(
params: impl IntoIterator<Item = ValType>,
results: impl IntoIterator<Item = ValType>
) -> FuncType
[src]
params: impl IntoIterator<Item = ValType>,
results: impl IntoIterator<Item = ValType>
) -> FuncType
Creates a new function descriptor from the given parameters and results.
The function descriptor returned will represent a function which takes
params
as arguments and returns results
when it is finished.
pub fn params(&self) -> impl ExactSizeIterator<Item = ValType> + '_
[src]
Returns the list of parameter types for this function.
pub fn results(&self) -> impl ExactSizeIterator<Item = ValType> + '_
[src]
Returns the list of result types for this function.
Trait Implementations
impl From<FuncType> for ExternType
[src]
impl From<FuncType> for ExternType
[src]