[][src]Enum wasmer_runtime_core::state::MachineValue

pub enum MachineValue {
    Undefined,
    Vmctx,
    VmctxDeref(Vec<usize>),
    PreserveRegister(RegisterIndex),
    CopyStackBPRelative(i32),
    ExplicitShadow,
    WasmStack(usize),
    WasmLocal(usize),
    TwoHalves(Box<(MachineValue, MachineValue)>),
}

Variants

UndefinedVmctxVmctxDeref(Vec<usize>)PreserveRegister(RegisterIndex)CopyStackBPRelative(i32)ExplicitShadowWasmStack(usize)WasmLocal(usize)TwoHalves(Box<(MachineValue, MachineValue)>)

Trait Implementations

impl Eq for MachineValue[src]

impl Clone for MachineValue[src]

impl PartialEq<MachineValue> for MachineValue[src]

impl Hash for MachineValue[src]

impl Debug for MachineValue[src]

Auto Trait Implementations

impl Sync for MachineValue

impl Send for MachineValue

impl Unpin for MachineValue

impl UnwindSafe for MachineValue

impl RefUnwindSafe for MachineValue

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]

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