Enum wasmtime_environ::wasm::WasmType [−][src]
pub enum WasmType { I32, I64, F32, F64, V128, FuncRef, ExternRef, ExnRef, }
Expand description
WebAssembly value type – equivalent of wasmparser
’s Type.
Variants
I32 type
I64 type
F32 type
F64 type
V128 type
FuncRef type
ExternRef type
ExnRef type
Trait Implementations
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<WasmType, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
[src]
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<WasmType, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
[src]Deserialize this value from the given Serde deserializer. Read more
pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
[src]
pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
[src]Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for WasmType
impl UnwindSafe for WasmType
Blanket Implementations
Mutably borrows from an owned value. Read more
Compare self to key
and return true
if they are equal.