Union wasmtime_runtime::ValRaw [−][src]
#[repr(C)]
pub union ValRaw {
pub i32: i32,
pub i64: i64,
pub f32: u32,
pub f64: u64,
pub v128: u128,
pub funcref: usize,
pub externref: usize,
}Expand description
A “raw” and unsafe representation of a WebAssembly value.
This is provided for use with the Func::new_unchecked and
Func::call_unchecked APIs. In general it’s unlikely you should be using
this from Rust, rather using APIs like Func::wrap and TypedFunc::call.
Fields
i32: i32i64: i64f32: u32f64: u64v128: u128funcref: usizeexternref: usizeTrait Implementations
Auto Trait Implementations
impl RefUnwindSafe for ValRaw
impl UnwindSafe for ValRaw
Blanket Implementations
Mutably borrows from an owned value. Read more
