[][src]Struct wasmtime::ExportType

pub struct ExportType<'module> { /* 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.

Implementations

impl<'module> ExportType<'module>[src]

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

Returns the name by which this export is known.

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

Returns the type of this export.

Trait Implementations

impl<'module> Clone for ExportType<'module>[src]

impl<'module> Debug for ExportType<'module>[src]

impl<'module> Eq for ExportType<'module>[src]

impl<'module> Hash for ExportType<'module>[src]

impl<'module> PartialEq<ExportType<'module>> for ExportType<'module>[src]

impl<'module> StructuralEq for ExportType<'module>[src]

impl<'module> StructuralPartialEq for ExportType<'module>[src]

Auto Trait Implementations

impl<'module> RefUnwindSafe for ExportType<'module>

impl<'module> Send for ExportType<'module>

impl<'module> Sync for ExportType<'module>

impl<'module> Unpin for ExportType<'module>

impl<'module> UnwindSafe for ExportType<'module>

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?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.