[][src]Struct wasmer_runtime_core::state::FunctionStateMap

pub struct FunctionStateMap {
    pub initial: MachineState,
    pub local_function_id: usize,
    pub locals: Vec<WasmAbstractValue>,
    pub shadow_size: usize,
    pub diffs: Vec<MachineStateDiff>,
    pub wasm_function_header_target_offset: Option<SuspendOffset>,
    pub wasm_offset_to_target_offset: BTreeMap<usize, SuspendOffset>,
    pub loop_offsets: BTreeMap<usize, OffsetInfo>,
    pub call_offsets: BTreeMap<usize, OffsetInfo>,
    pub trappable_offsets: BTreeMap<usize, OffsetInfo>,
}

Fields

initial: MachineStatelocal_function_id: usizelocals: Vec<WasmAbstractValue>shadow_size: usizediffs: Vec<MachineStateDiff>wasm_function_header_target_offset: Option<SuspendOffset>wasm_offset_to_target_offset: BTreeMap<usize, SuspendOffset>loop_offsets: BTreeMap<usize, OffsetInfo>call_offsets: BTreeMap<usize, OffsetInfo>trappable_offsets: BTreeMap<usize, OffsetInfo>

Methods

impl FunctionStateMap[src]

pub fn new(
    initial: MachineState,
    local_function_id: usize,
    shadow_size: usize,
    locals: Vec<WasmAbstractValue>
) -> FunctionStateMap
[src]

Trait Implementations

impl Clone for FunctionStateMap[src]

impl Debug for FunctionStateMap[src]

Auto Trait Implementations

impl Sync for FunctionStateMap

impl Send for FunctionStateMap

impl Unpin for FunctionStateMap

impl UnwindSafe for FunctionStateMap

impl RefUnwindSafe for FunctionStateMap

Blanket Implementations

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> From<T> for T[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.

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

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

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