[][src]Struct parity_wasm::builder::ExportInternalBuilder

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

Internal mapping builder for export entry

Methods

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(self, index: u32) -> F::Result[src]

Map to function by index

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

Map to memory

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

Map to table

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

Map to global

Auto Trait Implementations

impl<F> Send for ExportInternalBuilder<F> where
    F: Send

impl<F> Sync for ExportInternalBuilder<F> where
    F: Sync

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.