pub enum RuntimeError {
InvokeError(InvokeError),
Metering(Box<dyn Any + Send>),
InstanceImage(Box<dyn Any + Send>),
User(Box<dyn Any + Send>),
}Expand description
A RuntimeError is an error that describes why the attempt to fully execute
some Wasm has failed.
These reasons vary from the Wasm trapping or otherwise failing directly to user controlled conditions such as metering running out of gas or a user host function returning a custom error type directly.
Variants§
InvokeError(InvokeError)
An error relating to the invocation of a Wasm function.
Metering(Box<dyn Any + Send>)
A metering triggered error value.
An error of this type indicates that it was returned by the metering system.
InstanceImage(Box<dyn Any + Send>)
A frozen state of Wasm used to pause and resume execution. Not strictly an
“error”, but this happens while executing and therefore is a RuntimeError
from the persective of the caller that expected the code to fully execute.
User(Box<dyn Any + Send>)
A user triggered error value.
An error returned from a host function.
Trait Implementations§
Source§impl Debug for RuntimeError
impl Debug for RuntimeError
Source§impl Display for RuntimeError
impl Display for RuntimeError
Source§impl Error for RuntimeError
impl Error for RuntimeError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
use the Display impl or to_string()