pub enum WasmType {
I32,
I64,
F32,
F64,
FuncRef,
ExternRef,
V128,
}Expand description
WebAssembly value types.
Variants§
I32
32-bit integer
I64
64-bit integer
F32
32-bit float
F64
64-bit float
FuncRef
Function reference
ExternRef
External reference
V128
128-bit SIMD vector
Trait Implementations§
impl Eq for WasmType
impl StructuralPartialEq for WasmType
Auto Trait Implementations§
impl Freeze for WasmType
impl RefUnwindSafe for WasmType
impl Send for WasmType
impl Sync for WasmType
impl Unpin for WasmType
impl UnsafeUnpin for WasmType
impl UnwindSafe for WasmType
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