Enum wasmtime_environ::WasmType
source · pub enum WasmType {
I32,
I64,
F32,
F64,
V128,
FuncRef,
ExternRef,
}
Expand description
WebAssembly value type – equivalent of wasmparser
’s Type.
Variants§
I32
I32 type
I64
I64 type
F32
F32 type
F64
F64 type
V128
V128 type
FuncRef
FuncRef type
ExternRef
ExternRef type
Trait Implementations§
source§impl<'de> Deserialize<'de> for WasmType
impl<'de> Deserialize<'de> for WasmType
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<WasmType, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<WasmType, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<WasmType> for WasmType
impl PartialEq<WasmType> for WasmType
source§impl Serialize for WasmType
impl Serialize for WasmType
source§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for WasmType
impl Eq for WasmType
impl StructuralEq for WasmType
impl StructuralPartialEq for WasmType
Auto Trait Implementations§
impl RefUnwindSafe for WasmType
impl Send for WasmType
impl Sync for WasmType
impl Unpin 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
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.