Enum parity_wasm::interpreter::Error [] [src]

pub enum Error {
    Program(String),
    Initialization(String),
    Function(String),
    Table(String),
    Memory(String),
    Variable(String),
    Global(String),
    Local(String),
    Stack(String),
    Value(String),
    Interpreter(String),
    Env(String),
    Native(String),
    Trap(String),
}

Interpreter error.

Variants

Program-level error.

Initialization error.

Function-level error.

Table-level error.

Memory-level error.

Variable-level error.

Global-level error.

Local-level error.

Stack-level error.

Value-level error.

Interpreter (code) error.

Env module error.

Native module error.

Trap.

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl Clone for Error
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Error
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Into<String> for Error
[src]

Performs the conversion.