pub enum TrapReason {
    User {
        error: Error,
        needs_backtrace: bool,
    },
    Jit {
        pc: usize,
        faulting_addr: Option<usize>,
    },
    Wasm(Trap),
}
Expand description

Enumeration of different methods of raising a trap.

Variants§

§

User

A user-raised trap through raise_user_trap.

Fields

§error: Error

The actual user trap error.

§needs_backtrace: bool

Whether we need to capture a backtrace for this error or not.

§

Jit

A trap raised from Cranelift-generated code.

Fields

§pc: usize

The program counter where this trap originated.

This is later used with side tables from compilation to translate the trapping address to a trap code.

§faulting_addr: Option<usize>

If the trap was a memory-related trap such as SIGSEGV then this field will contain the address of the inaccessible data.

Note that wasm loads/stores are not guaranteed to fill in this information. Dynamically-bounds-checked memories, for example, will not access an invalid address but may instead load from NULL or may explicitly jump to a ud2 instruction. This is only available for fault-based traps which are one of the main ways, but not the only way, to run wasm.

§

Wasm(Trap)

A trap raised from a wasm libcall

Implementations§

source§

impl TrapReason

source

pub fn user_without_backtrace(error: Error) -> Self

Create a new TrapReason::User that does not have a backtrace yet.

source

pub fn user_with_backtrace(error: Error) -> Self

Create a new TrapReason::User that already has a backtrace.

source

pub fn is_jit(&self) -> bool

Is this a JIT trap?

Trait Implementations§

source§

impl Debug for TrapReason

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<Error> for TrapReason

source§

fn from(err: Error) -> Self

Converts to this type from the input type.
source§

impl From<Trap> for TrapReason

source§

fn from(code: Trap) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.