Struct wasmtime::ImportType [−][src]
pub struct ImportType<'module> { /* fields omitted */ }
A descriptor for an imported value into a wasm module.
This type is primarily accessed from the
Module::imports
API. Each ImportType
describes an import into the wasm module with the module/name that it’s
imported from as well as the type of item that’s being imported.
Implementations
impl<'module> ImportType<'module>
[src]
impl<'module> ImportType<'module>
[src]pub fn module(&self) -> &'module str
[src]
Returns the module name that this import is expected to come from.
pub fn name(&self) -> Option<&'module str>
[src]
Returns the field name of the module that this import is expected to come from.
Note that the name can be None
for the module linking proposal. If the
module linking proposal is not enabled it’s safe to unwrap this.
pub fn ty(&self) -> ExternType
[src]
Returns the expected type of this import.
Trait Implementations
impl<'module> Clone for ImportType<'module>
[src]
impl<'module> Clone for ImportType<'module>
[src]