Struct wasmparser_nostd::ComponentFuncType
source · [−]pub struct ComponentFuncType<'a> {
pub params: Box<[(&'a str, ComponentValType)]>,
pub results: ComponentFuncResult<'a>,
}
Expand description
Represents a type of a function in a WebAssembly component.
Fields
params: Box<[(&'a str, ComponentValType)]>
The function parameters.
results: ComponentFuncResult<'a>
The function result.
Trait Implementations
sourceimpl<'a> Clone for ComponentFuncType<'a>
impl<'a> Clone for ComponentFuncType<'a>
sourcefn clone(&self) -> ComponentFuncType<'a>
fn clone(&self) -> ComponentFuncType<'a>
Returns a copy of the value. Read more
1.0.0 · sourcefn 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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more