Struct wasmparser::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§
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 moresource§impl<'a> Debug for ComponentFuncType<'a>
impl<'a> Debug for ComponentFuncType<'a>
source§impl<'a> PartialEq for ComponentFuncType<'a>
impl<'a> PartialEq for ComponentFuncType<'a>
impl<'a> Eq for ComponentFuncType<'a>
impl<'a> StructuralPartialEq for ComponentFuncType<'a>
Auto Trait Implementations§
impl<'a> Freeze for ComponentFuncType<'a>
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.