Enum wasmer_compiler::WasmError [−][src]
pub enum WasmError { InvalidWebAssembly { message: String, offset: usize, }, Unsupported(String), ImplLimitExceeded, Middleware(MiddlewareError), Generic(String), }
Expand description
A WebAssembly translation error.
When a WebAssembly function can’t be translated, one of these error codes will be returned to describe the failure.
Variants
The input WebAssembly code is invalid.
This error code is used by a WebAssembly translator when it encounters invalid WebAssembly code. This should never happen for validated WebAssembly code.
Show fields
Unsupported(String)
A feature used by the WebAssembly code is not supported by the embedding environment.
Embedding environments may have their own limitations and feature restrictions.
An implementation limit was exceeded.
Middleware(MiddlewareError)
An error from the middleware error.
Generic(String)
A generic error.
Trait Implementations
Performs the conversion.
Auto Trait Implementations
impl RefUnwindSafe for WasmError
impl UnwindSafe for WasmError
Blanket Implementations
type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
Converts some archived metadata to the pointer metadata for itself.
Mutably borrows from an owned value. Read more