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]

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]

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 Debug for ModuleType[src]

impl From<ModuleType> for ExternType[src]

Auto Trait Implementations

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> From<T> for T[src]

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

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

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.