[][src]Struct wast::InlineExport

pub struct InlineExport<'a> {
    pub names: Vec<&'a str>,
}

A listing of inline (export "foo") statements on a WebAssembly item in its textual format.

Fields

names: Vec<&'a str>

The extra names to export an item as, if any.

Trait Implementations

impl<'a> Parse<'a> for InlineExport<'a>[src]

impl<'a> Debug for InlineExport<'a>[src]

Auto Trait Implementations

impl<'a> Send for InlineExport<'a>

impl<'a> Sync for InlineExport<'a>

impl<'a> Unpin for InlineExport<'a>

impl<'a> UnwindSafe for InlineExport<'a>

impl<'a> RefUnwindSafe for InlineExport<'a>

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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