[][src]Enum wasmtime_runtime::Trap

pub enum Trap {
    User(Box<dyn Error + Send + Sync>),
    Wasm {
        desc: TrapDescription,
        backtrace: Backtrace,
    },
}

Stores trace message with backtrace.

Variants

User(Box<dyn Error + Send + Sync>)

A user-raised trap through raise_user_trap.

Wasm

A wasm-originating trap from wasm code itself.

Fields of Wasm

desc: TrapDescription

What sort of trap happened, as well as where in the original wasm module it happened.

backtrace: Backtrace

Native stack backtrace at the time the trap occurred

Trait Implementations

impl Debug for Trap[src]

impl Display for Trap[src]

impl Error for Trap[src]

Auto Trait Implementations

impl !RefUnwindSafe for Trap

impl Send for Trap

impl Sync for Trap

impl Unpin for Trap

impl !UnwindSafe for Trap

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.