Struct wasmparser::ComponentFuncType
source · pub struct ComponentFuncType<'a> {
pub params: TypeVec<'a>,
pub results: TypeVec<'a>,
}
Expand description
Represents a type of a function in a WebAssembly component.
Fields§
§params: TypeVec<'a>
The function parameters.
results: TypeVec<'a>
The function results.
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 moreAuto Trait Implementations§
impl<'a> RefUnwindSafe for ComponentFuncType<'a>
impl<'a> Send for ComponentFuncType<'a>
impl<'a> Sync for ComponentFuncType<'a>
impl<'a> Unpin for ComponentFuncType<'a>
impl<'a> UnwindSafe for ComponentFuncType<'a>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more