[][src]Struct wasmtime_runtime::Imports

pub struct Imports {
    pub dependencies: HashSet<InstanceHandle>,
    pub functions: BoxedSlice<FuncIndex, VMFunctionImport>,
    pub tables: BoxedSlice<TableIndex, VMTableImport>,
    pub memories: BoxedSlice<MemoryIndex, VMMemoryImport>,
    pub globals: BoxedSlice<GlobalIndex, VMGlobalImport>,
}

Resolved import pointers.

Fields

dependencies: HashSet<InstanceHandle>

The set of instances that the imports depend on.

functions: BoxedSlice<FuncIndex, VMFunctionImport>

Resolved addresses for imported functions.

tables: BoxedSlice<TableIndex, VMTableImport>

Resolved addresses for imported tables.

memories: BoxedSlice<MemoryIndex, VMMemoryImport>

Resolved addresses for imported memories.

globals: BoxedSlice<GlobalIndex, VMGlobalImport>

Resolved addresses for imported globals.

Methods

impl Imports[src]

pub fn new(
    dependencies: HashSet<InstanceHandle>,
    function_imports: PrimaryMap<FuncIndex, VMFunctionImport>,
    table_imports: PrimaryMap<TableIndex, VMTableImport>,
    memory_imports: PrimaryMap<MemoryIndex, VMMemoryImport>,
    global_imports: PrimaryMap<GlobalIndex, VMGlobalImport>
) -> Self
[src]

Construct a new Imports instance.

pub fn none() -> Self[src]

Construct a new Imports instance with no imports.

Trait Implementations

impl Clone for Imports[src]

Auto Trait Implementations

impl !Send for Imports

impl !Sync for Imports

impl Unpin for Imports

impl !UnwindSafe for Imports

impl !RefUnwindSafe for Imports

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for 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.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self