Struct wasmtime_environ::wasmparser::ComponentFuncType
source · pub struct ComponentFuncType<'a> {
pub params: Box<[(Option<&'a str>, InterfaceTypeRef)], Global>,
pub result: InterfaceTypeRef,
}
Expand description
Represents a type of a function in a WebAssembly component.
Fields§
§params: Box<[(Option<&'a str>, InterfaceTypeRef)], Global>
The function parameter types.
result: InterfaceTypeRef
The function result type.
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