pub struct FuncType { /* private fields */ }
Expand description
A descriptor for a function in a WebAssembly module.
WebAssembly functions can have 0 or more parameters and results.
Implementations§
source§impl FuncType
impl FuncType
sourcepub fn new(
params: impl IntoIterator<Item = ValType>,
results: impl IntoIterator<Item = ValType>
) -> FuncType
pub fn new( params: impl IntoIterator<Item = ValType>, results: impl IntoIterator<Item = ValType> ) -> FuncType
Creates a new function descriptor from the given parameters and results.
The function descriptor returned will represent a function which takes
params
as arguments and returns results
when it is finished.
sourcepub fn params(&self) -> impl ExactSizeIterator<Item = ValType> + '_
pub fn params(&self) -> impl ExactSizeIterator<Item = ValType> + '_
Returns the list of parameter types for this function.
sourcepub fn results(&self) -> impl ExactSizeIterator<Item = ValType> + '_
pub fn results(&self) -> impl ExactSizeIterator<Item = ValType> + '_
Returns the list of result types for this function.
Trait Implementations§
source§impl From<FuncType> for ExternType
impl From<FuncType> for ExternType
source§fn from(ty: FuncType) -> ExternType
fn from(ty: FuncType) -> ExternType
Converts to this type from the input type.
source§impl PartialEq<FuncType> for FuncType
impl PartialEq<FuncType> for FuncType
impl Eq for FuncType
impl StructuralEq for FuncType
impl StructuralPartialEq for FuncType
Auto Trait Implementations§
impl RefUnwindSafe for FuncType
impl Send for FuncType
impl Sync for FuncType
impl Unpin for FuncType
impl UnwindSafe for FuncType
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> CallHasher for Twhere
T: Hash + ?Sized,
impl<T> CallHasher for Twhere T: Hash + ?Sized,
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.