[][src]Enum wast::ElemPayload

pub enum ElemPayload<'a> {
    Indices(Vec<Index<'a>>),
    Exprs {
        ty: TableElemType,
        exprs: Vec<Option<Index<'a>>>,
    },
}

Different ways to define the element segment payload in a module.

Variants

Indices(Vec<Index<'a>>)

This element segment has a contiguous list of function indices

Exprs

This element segment has a list of optional function indices, represented as expressions using ref.func and ref.null.

Fields of Exprs

ty: TableElemType

The desired type of each expression below.

exprs: Vec<Option<Index<'a>>>

The expressions, currently optional function indices, in this segment.

Trait Implementations

impl<'a> Clone for ElemPayload<'a>[src]

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

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for ElemPayload<'a>

impl<'a> Send for ElemPayload<'a>

impl<'a> Sync for ElemPayload<'a>

impl<'a> Unpin for ElemPayload<'a>

impl<'a> UnwindSafe for ElemPayload<'a>

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.