pub struct CoreFuncType {
pub params: Vec<CoreType>,
pub results: Vec<CoreType>,
}Expand description
Represents a core function type in a WebAssembly module.
Fields§
§params: Vec<CoreType>The parameters of the function.
results: Vec<CoreType>The results of the function.
Trait Implementations§
Source§impl Clone for CoreFuncType
impl Clone for CoreFuncType
Source§fn clone(&self) -> CoreFuncType
fn clone(&self) -> CoreFuncType
Returns a duplicate 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 Debug for CoreFuncType
impl Debug for CoreFuncType
Source§impl Display for CoreFuncType
impl Display for CoreFuncType
Source§impl Hash for CoreFuncType
impl Hash for CoreFuncType
Source§impl PartialEq for CoreFuncType
impl PartialEq for CoreFuncType
impl Eq for CoreFuncType
impl StructuralPartialEq for CoreFuncType
Auto Trait Implementations§
impl Freeze for CoreFuncType
impl RefUnwindSafe for CoreFuncType
impl Send for CoreFuncType
impl Sync for CoreFuncType
impl Unpin for CoreFuncType
impl UnwindSafe for CoreFuncType
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§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.