Enum wasmtime_environ::wasmparser::Type
source · pub enum Type {
I32,
I64,
F32,
F64,
V128,
FuncRef,
ExternRef,
}
Expand description
Represents the types of values in a WebAssembly module.
Variants§
I32
The type is i32.
I64
The type is i64.
F32
The type is f32.
F64
The type is f64.
V128
The type is v128.
FuncRef
The type is a function reference.
ExternRef
The type is an extern reference.
Trait Implementations§
impl Copy for Type
impl Eq for Type
impl StructuralEq for Type
impl StructuralPartialEq for Type
Auto Trait Implementations§
impl RefUnwindSafe for Type
impl Send for Type
impl Sync for Type
impl Unpin for Type
impl UnwindSafe for Type
Blanket Implementations§
source§impl<T> CallHasher for Twhere
T: Hash + ?Sized,
impl<T> CallHasher for Twhere
T: Hash + ?Sized,
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.