[][src]Struct wasmtime::ExportType

pub struct ExportType { /* fields omitted */ }

A descriptor for an exported WebAssembly value.

This type is primarily accessed from the Module::exports accessor and describes what names are exported from a wasm module and the type of the item that is exported.

Methods

impl ExportType[src]

pub fn new(name: &str, ty: ExternType) -> ExportType[src]

Creates a new export which is exported with the given name and has the given ty.

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

Returns the name by which this export is known by.

pub fn ty(&self) -> &ExternType[src]

Returns the type of this export.

Trait Implementations

impl Clone for ExportType[src]

impl Debug for ExportType[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> 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.