Struct wasmtime_environ::wasmparser::ComponentImport
source · pub struct ComponentImport<'a> {
pub name: &'a str,
pub url: &'a str,
pub ty: ComponentTypeRef,
}
Expand description
Represents an import in a WebAssembly component
Fields§
§name: &'a str
The name of the imported item.
url: &'a str
The optional URL of the imported item.
ty: ComponentTypeRef
The type reference for the import.
Trait Implementations§
source§impl<'a> Clone for ComponentImport<'a>
impl<'a> Clone for ComponentImport<'a>
source§fn clone(&self) -> ComponentImport<'a>
fn clone(&self) -> ComponentImport<'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