[][src]Struct wasmer_runtime_core::state::MachineStateDiff

pub struct MachineStateDiff {
    pub last: Option<usize>,
    pub stack_push: Vec<MachineValue>,
    pub stack_pop: usize,
    pub reg_diff: Vec<(RegisterIndex, MachineValue)>,
    pub prev_frame_diff: BTreeMap<usize, Option<MachineValue>>,
    pub wasm_stack_push: Vec<WasmAbstractValue>,
    pub wasm_stack_pop: usize,
    pub wasm_stack_private_depth: usize,
    pub wasm_inst_offset: usize,
}

Fields

last: Option<usize>stack_push: Vec<MachineValue>stack_pop: usizereg_diff: Vec<(RegisterIndex, MachineValue)>prev_frame_diff: BTreeMap<usize, Option<MachineValue>>wasm_stack_push: Vec<WasmAbstractValue>wasm_stack_pop: usizewasm_stack_private_depth: usizewasm_inst_offset: usize

Methods

impl MachineStateDiff[src]

pub fn build_state(&self, m: &FunctionStateMap) -> MachineState[src]

Trait Implementations

impl Default for MachineStateDiff[src]

impl Clone for MachineStateDiff[src]

impl Debug for MachineStateDiff[src]

Auto Trait Implementations

impl Sync for MachineStateDiff

impl Send for MachineStateDiff

impl Unpin for MachineStateDiff

impl UnwindSafe for MachineStateDiff

impl RefUnwindSafe for MachineStateDiff

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]