Enum wasm_encoder::ValType
source · #[repr(u8)]
pub enum ValType {
I32,
I64,
F32,
F64,
V128,
FuncRef,
ExternRef,
}
Expand description
The type of a core WebAssembly value.
Variants§
I32
The i32
type.
I64
The i64
type.
F32
The f32
type.
F64
The f64
type.
V128
The v128
type.
Part of the SIMD proposal.
FuncRef
The funcref
type.
Part of the reference types proposal when used anywhere other than a table’s element type.
ExternRef
The externref
type.
Part of the reference types proposal.
Trait Implementations§
source§impl Ord for ValType
impl Ord for ValType
source§impl PartialEq<ValType> for ValType
impl PartialEq<ValType> for ValType
source§impl PartialOrd<ValType> for ValType
impl PartialOrd<ValType> for ValType
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read more