Struct wasmtime::ModuleType [−][src]
pub struct ModuleType { /* fields omitted */ }
A descriptor for a WebAssembly module type.
This is a part of the WebAssembly module-linking proposal.
Implementations
impl ModuleType
[src]
impl ModuleType
[src]pub fn new() -> ModuleType
[src]
Creates a new empty module type.
pub fn add_named_export(&mut self, name: &str, ty: ExternType)
[src]
Adds a new export to this ModuleType
.
pub fn add_named_import(
&mut self,
module: &str,
field: Option<&str>,
ty: ExternType
)
[src]
&mut self,
module: &str,
field: Option<&str>,
ty: ExternType
)
Adds a new import to this ModuleType
.
pub fn imports(&self) -> impl ExactSizeIterator<Item = ImportType<'_>>
[src]
Returns the list of imports associated with this module type.
pub fn exports(&self) -> impl ExactSizeIterator<Item = ExportType<'_>>
[src]
Returns the list of exports associated with this module type.
Trait Implementations
impl Clone for ModuleType
[src]
impl Clone for ModuleType
[src]fn clone(&self) -> ModuleType
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl From<ModuleType> for ExternType
[src]
impl From<ModuleType> for ExternType
[src]