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 moreAuto Trait Implementations§
impl<'a> RefUnwindSafe for ComponentInstantiationArg<'a>
impl<'a> Send for ComponentInstantiationArg<'a>
impl<'a> Sync for ComponentInstantiationArg<'a>
impl<'a> Unpin for ComponentInstantiationArg<'a>
impl<'a> UnwindSafe for ComponentInstantiationArg<'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