Enum wasmtime_environ::CompileError
source · pub enum CompileError {
Wasm(WasmError),
Codegen(CodegenError),
}
Expand description
An error while compiling WebAssembly to machine code.
Variants§
Wasm(WasmError)
A wasm translation error occured.
Codegen(CodegenError)
A compilation error occured.
Trait Implementations§
source§impl Debug for CompileError
impl Debug for CompileError
source§impl Display for CompileError
impl Display for CompileError
source§impl Fail for CompileError
impl Fail for CompileError
source§fn cause(&self) -> Option<&dyn Fail>
fn cause(&self) -> Option<&dyn Fail>
Returns a reference to the underlying cause of this failure, if it
is an error that wraps other errors. Read more
source§fn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
Returns a reference to the
Backtrace
carried by this failure, if it
carries one. Read more