pub struct WasiFunctionType {
pub params: Vec<WasmValueType>,
pub results: Vec<WasmValueType>,
}Expand description
WASM 函数类型
Fields§
§params: Vec<WasmValueType>参数类型
results: Vec<WasmValueType>返回值类型
Trait Implementations§
Source§impl Clone for WasiFunctionType
impl Clone for WasiFunctionType
Source§fn clone(&self) -> WasiFunctionType
fn clone(&self) -> WasiFunctionType
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 WasiFunctionType
impl Debug for WasiFunctionType
Source§impl PartialEq for WasiFunctionType
impl PartialEq for WasiFunctionType
impl StructuralPartialEq for WasiFunctionType
Auto Trait Implementations§
impl Freeze for WasiFunctionType
impl RefUnwindSafe for WasiFunctionType
impl Send for WasiFunctionType
impl Sync for WasiFunctionType
impl Unpin for WasiFunctionType
impl UnwindSafe for WasiFunctionType
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