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 moresource§impl<'a> Debug for ComponentInstantiationArg<'a>
impl<'a> Debug for ComponentInstantiationArg<'a>
source§impl<'a> FromReader<'a> for ComponentInstantiationArg<'a>
impl<'a> FromReader<'a> for ComponentInstantiationArg<'a>
source§fn from_reader(
reader: &mut BinaryReader<'a>
) -> Result<ComponentInstantiationArg<'a>, BinaryReaderError>
fn from_reader( reader: &mut BinaryReader<'a> ) -> Result<ComponentInstantiationArg<'a>, BinaryReaderError>
Attempts to read
Self
from the provided binary reader, returning an
error if it is unable to do so.