Struct wasmer_compiler::CompiledFunctionFrameInfo[][src]

pub struct CompiledFunctionFrameInfo {
    pub traps: Vec<TrapInformation>,
    pub address_map: FunctionAddressMap,
}

The frame info for a Compiled function.

This structure is only used for reconstructing the frame information after a Trap.

Fields

traps: Vec<TrapInformation>

The traps (in the function body).

Code offsets of the traps MUST be in ascending order.

address_map: FunctionAddressMap

The address map.

Trait Implementations

impl Clone for CompiledFunctionFrameInfo[src]

impl Debug for CompiledFunctionFrameInfo[src]

impl Default for CompiledFunctionFrameInfo[src]

impl<'de> Deserialize<'de> for CompiledFunctionFrameInfo[src]

impl Eq for CompiledFunctionFrameInfo[src]

impl PartialEq<CompiledFunctionFrameInfo> for CompiledFunctionFrameInfo[src]

impl Serialize for CompiledFunctionFrameInfo[src]

impl StructuralEq for CompiledFunctionFrameInfo[src]

impl StructuralPartialEq for CompiledFunctionFrameInfo[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

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

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.