Enum greenwasm_spectest::InvokationResult[][src]

pub enum InvokationResult {
    Vals(Vec<Value>),
    Trap,
    StackExhaustion,
}

Result of invoking a function.

Variants

The function returned successfully with a number of Values

The function trapped.

The function exhausted the stack.

Auto Trait Implementations