Struct wasmer_types::ImportType [−][src]
pub struct ImportType<T = ExternType> { /* fields omitted */ }
Expand description
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
Creates a new import descriptor which comes from module
and name
and
is of type ty
.
Returns the field name of the module that this import is expected to come from.
Trait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]Deserialize this value from the given Serde deserializer. Read more
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl<T> RefUnwindSafe for ImportType<T> where
T: RefUnwindSafe,
impl<T> Send for ImportType<T> where
T: Send,
impl<T> Sync for ImportType<T> where
T: Sync,
impl<T> Unpin for ImportType<T> where
T: Unpin,
impl<T> UnwindSafe for ImportType<T> where
T: UnwindSafe,
Blanket Implementations
type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
Converts some archived metadata to the pointer metadata for itself.
Mutably borrows from an owned value. Read more
Compare self to key
and return true
if they are equal.