pub enum WasmValueType {
I32,
I64,
F32,
F64,
V128,
Funcref,
Externref,
}Expand description
WASM 值类型
Variants§
Trait Implementations§
Source§impl Clone for WasmValueType
impl Clone for WasmValueType
Source§fn clone(&self) -> WasmValueType
fn clone(&self) -> WasmValueType
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 WasmValueType
impl Debug for WasmValueType
Source§impl Display for WasmValueType
impl Display for WasmValueType
Source§impl PartialEq for WasmValueType
impl PartialEq for WasmValueType
Source§impl TryFrom<u8> for WasmValueType
impl TryFrom<u8> for WasmValueType
impl Copy for WasmValueType
impl StructuralPartialEq for WasmValueType
Auto Trait Implementations§
impl Freeze for WasmValueType
impl RefUnwindSafe for WasmValueType
impl Send for WasmValueType
impl Sync for WasmValueType
impl Unpin for WasmValueType
impl UnsafeUnpin for WasmValueType
impl UnwindSafe for WasmValueType
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