pub enum TableKind<'a> {
    Import {
        import: InlineImport<'a>,
        ty: TableType<'a>,
    },
    Normal(TableType<'a>),
    Inline {
        elem: RefType<'a>,
        payload: ElemPayload<'a>,
    },
}
Expand description

Different ways to textually define a table.

Variants

Import

Fields

import: InlineImport<'a>
ty: TableType<'a>

This table is actually an inlined import definition.

Normal(TableType<'a>)

A typical memory definition which simply says the limits of the table

Inline

Fields

elem: RefType<'a>

The element type of this table.

payload: ElemPayload<'a>

The element table entries to have, and the length of this list is the limits of the table as well.

The elem segments of this table, starting from 0, explicitly listed

Trait Implementations

Formats the value using the given formatter. 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

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

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.