Enum wasmtime_jit::SetupError
source · pub enum SetupError {
Validate(String),
Compile(CompileError),
Instantiate(InstantiationError),
DebugInfo(Error),
}
Expand description
An error condition while setting up a wasm instance, be it validation, compilation, or instantiation.
Variants§
Validate(String)
The module did not pass validation.
Compile(CompileError)
A wasm translation error occurred.
Instantiate(InstantiationError)
Some runtime resource was unavailable or insufficient, or the start function trapped.
DebugInfo(Error)
Debug information generation error occurred.
Trait Implementations§
source§impl Debug for SetupError
impl Debug for SetupError
source§impl Display for SetupError
impl Display for SetupError
source§impl Error for SetupError
impl Error for SetupError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<CompileError> for SetupError
impl From<CompileError> for SetupError
source§fn from(source: CompileError) -> Self
fn from(source: CompileError) -> Self
Converts to this type from the input type.
source§impl From<Error> for SetupError
impl From<Error> for SetupError
source§impl From<InstantiationError> for SetupError
impl From<InstantiationError> for SetupError
source§fn from(source: InstantiationError) -> Self
fn from(source: InstantiationError) -> Self
Converts to this type from the input type.