Trait wasmer_runtime_core_fl::types::NativeWasmType[][src]

pub unsafe trait NativeWasmType: Copy + Into<Value> where
    Self: Sized
{ const TYPE: Type; fn from_binary(bits: u64) -> Self;
fn to_binary(self) -> u64; }
Expand description

Represents a native wasm type.

Associated Constants

Type for this NativeWasmType.

Required methods

Convert from u64 bites to self.

Convert self to u64 binary representation.

Implementations on Foreign Types

Implementors