Struct wasmer::ImportType
source · pub struct ImportType<T = ExternType> { /* private fields */ }
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§
source§impl<T> ImportType<T>
impl<T> ImportType<T>
sourcepub fn new(module: &str, name: &str, ty: T) -> ImportType<T>
pub fn new(module: &str, name: &str, ty: T) -> ImportType<T>
Creates a new import descriptor which comes from module
and name
and
is of type ty
.
sourcepub fn module(&self) -> &str
pub fn module(&self) -> &str
Returns the module name that this import is expected to come from.
Trait Implementations§
source§impl<T> Clone for ImportType<T>where
T: Clone,
impl<T> Clone for ImportType<T>where
T: Clone,
source§fn clone(&self) -> ImportType<T>
fn clone(&self) -> ImportType<T>
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 moresource§impl<T> Debug for ImportType<T>where
T: Debug,
impl<T> Debug for ImportType<T>where
T: Debug,
source§impl<T> Hash for ImportType<T>where
T: Hash,
impl<T> Hash for ImportType<T>where
T: Hash,
source§impl<T> PartialEq<ImportType<T>> for ImportType<T>where
T: PartialEq<T>,
impl<T> PartialEq<ImportType<T>> for ImportType<T>where
T: PartialEq<T>,
source§fn eq(&self, other: &ImportType<T>) -> bool
fn eq(&self, other: &ImportType<T>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl<T> Eq for ImportType<T>where
T: Eq,
impl<T> StructuralEq for ImportType<T>
impl<T> StructuralPartialEq for ImportType<T>
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§
§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
§type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata
) -> <T as Pointee>::Metadata
fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata
) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
§impl<F, W, T, D> Deserialize<With<T, W>, D> for Fwhere
W: DeserializeWith<F, T, D>,
D: Fallible + ?Sized,
F: ?Sized,
impl<F, W, T, D> Deserialize<With<T, W>, D> for Fwhere
W: DeserializeWith<F, T, D>,
D: Fallible + ?Sized,
F: ?Sized,
§fn deserialize(
&self,
deserializer: &mut D
) -> Result<With<T, W>, <D as Fallible>::Error>
fn deserialize(
&self,
deserializer: &mut D
) -> Result<With<T, W>, <D as Fallible>::Error>
Deserializes using the given deserializer
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.