Trait wasmer_runtime_core_fl::types::WasmExternType[][src]

pub unsafe trait WasmExternType: Copy where
    Self: Sized
{ type Native: NativeWasmType; fn from_native(native: Self::Native) -> Self;
fn to_native(self) -> Self::Native; }
Expand description

A trait to represent a wasm extern type.

Associated Types

Native wasm type for this WasmExternType.

Required methods

Convert from given Native type to self.

Convert self to Native type.

Implementations on Foreign Types

Implementors