pub enum ComponentField<'a> {
Show 14 variants CoreModule(CoreModule<'a>), CoreInstance(CoreInstance<'a>), CoreType(CoreType<'a>), Component(NestedComponent<'a>), Instance(Instance<'a>), Alias(Alias<'a>), Type(Type<'a>), CanonicalFunc(CanonicalFunc<'a>), CoreFunc(CoreFunc<'a>), Func(Func<'a>), Start(Start<'a>), Import(ComponentImport<'a>), Export(ComponentExport<'a>), Custom(Custom<'a>),
}
Expand description

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

Variants

CoreModule(CoreModule<'a>)

CoreInstance(CoreInstance<'a>)

CoreType(CoreType<'a>)

Component(NestedComponent<'a>)

Instance(Instance<'a>)

Alias(Alias<'a>)

Type(Type<'a>)

CanonicalFunc(CanonicalFunc<'a>)

CoreFunc(CoreFunc<'a>)

Func(Func<'a>)

Start(Start<'a>)

Import(ComponentImport<'a>)

Export(ComponentExport<'a>)

Custom(Custom<'a>)

Trait Implementations

Formats the value using the given formatter. Read more

Performs the conversion.

Attempts to parse Self from parser, returning an error if it could not be parsed. 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.