Enum wasmer_runtime_core_fl::codegen::Event[][src]

pub enum Event<'a, 'b> {
    Internal(InternalEvent),
    Wasm(&'b Operator<'a>),
    WasmOwned(Operator<'a>),
}
Expand description

An event generated during parsing of a wasm binary

Variants

Internal

An internal event created by the parser used to provide hooks during code generation.

Tuple Fields of Internal

0: InternalEvent
Wasm

An event generated by parsing a wasm operator

Tuple Fields of Wasm

0: &'b Operator<'a>
WasmOwned

An event generated by parsing a wasm operator that contains an owned Operator

Tuple Fields of WasmOwned

0: Operator<'a>

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

Performs the conversion.

Performs the conversion.

Should always be Self

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.