pub enum Initializer {
    Import {
        module: String,
        field: Option<String>,
        index: EntityIndex,
    },
    AliasParentModule(ModuleIndex),
    AliasInstanceExport {
        instance: InstanceIndex,
        export: usize,
    },
    Instantiate {
        module: ModuleIndex,
        args: Vec<EntityIndex>,
    },
    DefineModule(usize),
}
Expand description

Initialization routines for creating an instance, encompassing imports, modules, instances, aliases, etc.

Variants

Import

Fields

module: String

Module name of this import

field: Option<String>

Optional field name of this import

index: EntityIndex

Where this import will be placed, which also has type information about the import.

An imported item is required to be provided.

AliasParentModule(ModuleIndex)

A module from the parent’s declared modules is inserted into our own index space.

AliasInstanceExport

Fields

instance: InstanceIndex
export: usize

A module from the parent’s declared modules is inserted into our own index space.

Instantiate

Fields

module: ModuleIndex

The module that this instance is instantiating.

args: Vec<EntityIndex>

The arguments provided to instantiation.

A module is being instantiated with previously configured intializers as arguments.

DefineModule(usize)

A module is defined into the module index space, and which module is being defined is specified by the index payload.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.