Struct wasmtime_environ::wasmparser::ComponentFuncType
source · pub struct ComponentFuncType<'a> {
pub params: Box<[(&'a str, ComponentValType)], Global>,
pub results: ComponentFuncResult<'a>,
}
Expand description
Represents a type of a function in a WebAssembly component.
Fields§
§params: Box<[(&'a str, ComponentValType)], Global>
The function parameters.
results: ComponentFuncResult<'a>
The function result.
Trait Implementations§
source§impl<'a> Clone for ComponentFuncType<'a>
impl<'a> Clone for ComponentFuncType<'a>
source§fn clone(&self) -> ComponentFuncType<'a>
fn clone(&self) -> ComponentFuncType<'a>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more