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 moreAuto Trait Implementations§
impl<'a> RefUnwindSafe for ComponentInstance<'a>
impl<'a> Send for ComponentInstance<'a>
impl<'a> Sync for ComponentInstance<'a>
impl<'a> Unpin for ComponentInstance<'a>
impl<'a> UnwindSafe for ComponentInstance<'a>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more