Struct wasmer_types::ImportType[][src]

pub struct ImportType<T = ExternType> { /* 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<T> ImportType<T>[src]

pub fn new(module: &str, name: &str, ty: T) -> Self[src]

Creates a new import descriptor which comes from module and name and is of type ty.

pub fn module(&self) -> &str[src]

Returns the module name that this import is expected to come from.

pub fn name(&self) -> &str[src]

Returns the field name of the module that this import is expected to come from.

pub fn ty(&self) -> &T

Notable traits for &'_ mut I

impl<'_, I> Iterator for &'_ mut I where
    I: Iterator + ?Sized
type Item = <I as Iterator>::Item;impl<'_, F> Future for &'_ mut F where
    F: Unpin + Future + ?Sized
type Output = <F as Future>::Output;
[src]

Returns the expected type of this import.

Trait Implementations

impl<T: Clone> Clone for ImportType<T>[src]

impl<T: Debug> Debug for ImportType<T>[src]

impl<'de, T> Deserialize<'de> for ImportType<T> where
    T: Deserialize<'de>, 
[src]

impl<T: Eq> Eq for ImportType<T>[src]

impl<T: Hash> Hash for ImportType<T>[src]

impl<T: PartialEq> PartialEq<ImportType<T>> for ImportType<T>[src]

impl<T> Serialize for ImportType<T> where
    T: Serialize
[src]

impl<T> StructuralEq for ImportType<T>[src]

impl<T> StructuralPartialEq for ImportType<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for ImportType<T> where
    T: RefUnwindSafe
[src]

impl<T> Send for ImportType<T> where
    T: Send
[src]

impl<T> Sync for ImportType<T> where
    T: Sync
[src]

impl<T> Unpin for ImportType<T> where
    T: Unpin
[src]

impl<T> UnwindSafe for ImportType<T> where
    T: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.