Function wasmer_vm::catch_traps[][src]

pub unsafe fn catch_traps<F>(
    vmctx: VMFunctionEnvironment,
    mut closure: F
) -> Result<(), Trap> where
    F: FnMut(), 

Catches any wasm traps that happen within the execution of closure, returning them as a Result.

Safety

Highly unsafe since closure won't have any destructors run.