Struct wasmtime_runtime::VMGlobalImport
source · #[repr(C)]pub struct VMGlobalImport {
pub from: *mut VMGlobalDefinition,
}
Expand description
The fields compiled code needs to access to utilize a WebAssembly global variable imported from another instance.
Note that unlike with functions, tables, and memories, VMGlobalImport
doesn’t include a vmctx
pointer. Globals are never resized, and don’t
require a vmctx
pointer to access.
Fields§
§from: *mut VMGlobalDefinition
A pointer to the imported global variable description.
Trait Implementations§
source§impl Clone for VMGlobalImport
impl Clone for VMGlobalImport
source§fn clone(&self) -> VMGlobalImport
fn clone(&self) -> VMGlobalImport
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