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
sourceimpl Debug for SetupError
impl Debug for SetupError
sourceimpl Display for SetupError
impl Display for SetupError
sourceimpl Error for SetupError
impl Error for SetupError
sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
sourcefn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
🔬 This is a nightly-only experimental API. (
backtrace
)Returns a stack backtrace, if available, of where this error occurred. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎 Deprecated since 1.42.0:
use the Display impl or to_string()
sourceimpl From<CompileError> for SetupError
impl From<CompileError> for SetupError
sourcefn from(source: CompileError) -> Self
fn from(source: CompileError) -> Self
Performs the conversion.
sourceimpl From<InstantiationError> for SetupError
impl From<InstantiationError> for SetupError
sourcefn from(source: InstantiationError) -> Self
fn from(source: InstantiationError) -> Self
Performs the conversion.
Auto Trait Implementations
impl !RefUnwindSafe for SetupError
impl Send for SetupError
impl Sync for SetupError
impl Unpin for SetupError
impl !UnwindSafe for SetupError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more