[][src]Union wasmer_vm::VMFunctionEnvironment

pub union VMFunctionEnvironment {
    pub vmctx: *mut VMContext,
    pub host_env: *mut c_void,
}

Union representing the first parameter passed when calling a function.

It may either be a pointer to the VMContext if it's a Wasm function or a pointer to arbitrary data controlled by the host if it's a host function.

Fields

vmctx: *mut VMContext

Wasm functions take a pointer to VMContext.

host_env: *mut c_void

Host functions can have custom environments.

Implementations

impl VMFunctionEnvironment[src]

pub fn is_null(&self) -> bool[src]

Check whether the pointer stored is null or not.

Trait Implementations

impl Clone for VMFunctionEnvironment[src]

impl Copy for VMFunctionEnvironment[src]

impl Debug for VMFunctionEnvironment[src]

impl PartialEq<VMFunctionEnvironment> for VMFunctionEnvironment[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> 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.