Enum wast::ModuleField[][src]

pub enum ModuleField<'a> {
Show variants Type(Type<'a>), Import(Import<'a>), Func(Func<'a>), Table(Table<'a>), Memory(Memory<'a>), Global(Global<'a>), Export(Export<'a>), Start(ItemRef<'a, func>), Elem(Elem<'a>), Data(Data<'a>), Event(Event<'a>), Custom(Custom<'a>), Instance(Instance<'a>), NestedModule(NestedModule<'a>), Alias(Alias<'a>),
}

A listing of all possible fields that can make up a WebAssembly module.

Variants

Type(Type<'a>)
Import(Import<'a>)
Func(Func<'a>)
Table(Table<'a>)
Memory(Memory<'a>)
Global(Global<'a>)
Export(Export<'a>)
Start(ItemRef<'a, func>)
Elem(Elem<'a>)
Data(Data<'a>)
Event(Event<'a>)
Custom(Custom<'a>)
Instance(Instance<'a>)
NestedModule(NestedModule<'a>)
Alias(Alias<'a>)

Trait Implementations

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

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for ModuleField<'a>

impl<'a> Send for ModuleField<'a>

impl<'a> Sync for ModuleField<'a>

impl<'a> Unpin for ModuleField<'a>

impl<'a> UnwindSafe for ModuleField<'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, 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.