[][src]Struct wasmer_runtime_core::codegen::DebugMetadata

pub struct DebugMetadata {
    pub func_info: Map<FuncIndex, ()>,
    pub inst_info: Map<FuncIndex, ()>,
    pub stack_slot_offsets: Map<FuncIndex, Vec<Option<i32>>>,
    pub pointers: Vec<(*const u8, usize)>,
}

Useful information for debugging gathered by compiling a Wasm module.

Fields

func_info: Map<FuncIndex, ()>

[CompiledFunctionData] in FuncIndex order

inst_info: Map<FuncIndex, ()>

[ValueLabelsRangesInner] in FuncIndex order

stack_slot_offsets: Map<FuncIndex, Vec<Option<i32>>>

Stack slot offsets in FuncIndex order

pointers: Vec<(*const u8, usize)>

function pointers and their lengths

Trait Implementations

impl Clone for DebugMetadata[src]

impl Debug for DebugMetadata[src]

Auto Trait Implementations

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.