Struct wasmtime_runtime::VMTableImport
source · #[repr(C)]pub struct VMTableImport {
pub from: *mut VMTableDefinition,
pub vmctx: *mut VMContext,
}Expand description
The fields compiled code needs to access to utilize a WebAssembly table imported from another instance.
Fields§
§from: *mut VMTableDefinitionA pointer to the imported table description.
vmctx: *mut VMContextA pointer to the VMContext that owns the table description.
Trait Implementations§
source§impl Clone for VMTableImport
impl Clone for VMTableImport
source§fn clone(&self) -> VMTableImport
fn clone(&self) -> VMTableImport
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 more