pub enum ComponentInstance<'a> {
Instantiate {
component_index: u32,
args: Box<[ComponentInstantiationArg<'a>], Global>,
},
FromExports(Box<[ComponentExport<'a>], Global>),
}
Expand description
Represents an instance in a WebAssembly component.
Variants§
Instantiate
Fields
§
args: Box<[ComponentInstantiationArg<'a>], Global>
The component’s instantiation arguments.
The instance is from instantiating a WebAssembly component.
FromExports(Box<[ComponentExport<'a>], Global>)
The instance is a from exporting local items.
Trait Implementations§
source§impl<'a> Clone for ComponentInstance<'a>
impl<'a> Clone for ComponentInstance<'a>
source§fn clone(&self) -> ComponentInstance<'a>
fn clone(&self) -> ComponentInstance<'a>
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