Struct wasmtime_runtime::VMFunctionImport
source · #[repr(C)]pub struct VMFunctionImport {
pub body: NonNull<VMFunctionBody>,
pub vmctx: *mut VMOpaqueContext,
}
Expand description
An imported function.
Fields§
§body: NonNull<VMFunctionBody>
A pointer to the imported function body.
vmctx: *mut VMOpaqueContext
The VM state associated with this function.
For core wasm instances this will be *mut VMContext
but for the
upcoming implementation of the component model this will be something
else. The actual definition of what this pointer points to depends on
the definition of func_ptr
and what compiled it.
Trait Implementations§
source§impl Clone for VMFunctionImport
impl Clone for VMFunctionImport
source§fn clone(&self) -> VMFunctionImport
fn clone(&self) -> VMFunctionImport
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 VMFunctionImport
impl Debug for VMFunctionImport
impl Copy for VMFunctionImport
impl Send for VMFunctionImport
impl Sync for VMFunctionImport
Auto Trait Implementations§
impl RefUnwindSafe for VMFunctionImport
impl Unpin for VMFunctionImport
impl UnwindSafe for VMFunctionImport
Blanket Implementations§
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