pub union VMFunctionEnvironment {
pub vmctx: *mut VMContext,
pub host_env: *mut c_void,
}
Expand description
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§
Trait Implementations§
Source§impl Clone for VMFunctionEnvironment
impl Clone for VMFunctionEnvironment
Source§fn clone(&self) -> VMFunctionEnvironment
fn clone(&self) -> VMFunctionEnvironment
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for VMFunctionEnvironment
impl Debug for VMFunctionEnvironment
Source§impl Hash for VMFunctionEnvironment
impl Hash for VMFunctionEnvironment
Source§impl PartialEq for VMFunctionEnvironment
impl PartialEq for VMFunctionEnvironment
impl Copy for VMFunctionEnvironment
impl Eq for VMFunctionEnvironment
Auto Trait Implementations§
impl Freeze for VMFunctionEnvironment
impl RefUnwindSafe for VMFunctionEnvironment
impl !Send for VMFunctionEnvironment
impl !Sync for VMFunctionEnvironment
impl Unpin for VMFunctionEnvironment
impl UnwindSafe for VMFunctionEnvironment
Blanket Implementations§
Source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
Source§type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
Source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CallHasher for T
impl<T> CallHasher for T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<F, W, T, D> Deserialize<With<T, W>, D> for F
impl<F, W, T, D> Deserialize<With<T, W>, D> for F
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.