Enum wast::ItemRef[][src]

pub enum ItemRef<'a, K> {
    Outer {
        kind: K,
        module: Index<'a>,
        idx: Index<'a>,
    },
    Item {
        kind: K,
        idx: Index<'a>,
        exports: Vec<&'a str>,
    },
}
Expand description

Parses (func $foo)

Optionally includes export strings for module-linking sugar syntax for alias injection.

Variants

Outer

Fields of Outer

kind: Kmodule: Index<'a>idx: Index<'a>
Item

Fields of Item

kind: Kidx: Index<'a>exports: Vec<&'a str>

Implementations

Unwraps the underlying Index for ItemRef::Item.

Panics if this is ItemRef::Outer or if exports haven’t been expanded yet.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Attempts to parse Self from parser, returning an error if it could not be parsed. Read more

Tests to see whether this token is the first token within the Cursor specified. Read more

Returns a human-readable name of this token to display when generating errors about this token missing. Read more

The same as peek, except it checks the token immediately following the current token. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.