Struct tetsy_wasm::builder::ExportInternalBuilder[][src]

pub struct ExportInternalBuilder<F = Identity> { /* fields omitted */ }

Internal mapping builder for export entry

Implementations

impl<F> ExportInternalBuilder<F> where
    F: Invoke<Internal>, 
[src]

pub fn with_callback(callback: F) -> Self[src]

New export entry internal mapping for the chained context

pub fn func(mut self: Self, index: u32) -> F::Result[src]

Map to function by index

pub fn memory(mut self: Self, index: u32) -> F::Result[src]

Map to memory

pub fn table(mut self: Self, index: u32) -> F::Result[src]

Map to table

pub fn global(mut self: Self, index: u32) -> F::Result[src]

Map to global

Auto Trait Implementations

impl<F> RefUnwindSafe for ExportInternalBuilder<F> where
    F: RefUnwindSafe
[src]

impl<F> Send for ExportInternalBuilder<F> where
    F: Send
[src]

impl<F> Sync for ExportInternalBuilder<F> where
    F: Sync
[src]

impl<F> Unpin for ExportInternalBuilder<F> where
    F: Unpin
[src]

impl<F> UnwindSafe for ExportInternalBuilder<F> where
    F: 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> From<T> for T[src]

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

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.