[][src]Struct wast::Import

pub struct Import<'a> {
    pub span: Span,
    pub module: &'a str,
    pub name: &'a str,
    pub id: Option<Id<'a>>,
    pub kind: ImportKind<'a>,
}

An import statement and entry in a WebAssembly module.

Fields

span: Span

Where this import was defined

module: &'a str

The module that this statement is importing from

name: &'a str

The name of the field in the module this statement imports from.

id: Option<Id<'a>>

An optional identifier to refer to this import as in the rest of the module.

kind: ImportKind<'a>

What kind of item is being imported.

Trait Implementations

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

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

Auto Trait Implementations

impl<'a> Send for Import<'a>

impl<'a> Sync for Import<'a>

impl<'a> Unpin for Import<'a>

impl<'a> UnwindSafe for Import<'a>

impl<'a> RefUnwindSafe for Import<'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]