pub struct ComponentInstantiationArg<'a> {
pub name: &'a str,
pub kind: ComponentExternalKind,
pub index: u32,
}
Expand description
Represents an argument to instantiating a WebAssembly component.
Fields§
§name: &'a str
The name of the component argument.
kind: ComponentExternalKind
The kind of the component argument.
index: u32
The index of the argument item.
Trait Implementations§
source§impl<'a> Clone for ComponentInstantiationArg<'a>
impl<'a> Clone for ComponentInstantiationArg<'a>
source§fn clone(&self) -> ComponentInstantiationArg<'a>
fn clone(&self) -> ComponentInstantiationArg<'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