Enum wasmedge_sdk::error::CoreCommonError
pub enum CoreCommonError {
RuntimeError,
CostLimitExceeded,
WrongVMWorkflow,
FuncNotFound,
AOTDisabled,
Interrupted,
UserDefError,
NotValidated,
}
Expand description
The error type for the common errors from WasmEdge Core.
Variants§
RuntimeError
CostLimitExceeded
WrongVMWorkflow
FuncNotFound
AOTDisabled
Interrupted
UserDefError
NotValidated
Trait Implementations§
§impl Clone for CoreCommonError
impl Clone for CoreCommonError
§fn clone(&self) -> CoreCommonError
fn clone(&self) -> CoreCommonError
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for CoreCommonError
impl Debug for CoreCommonError
§impl Display for CoreCommonError
impl Display for CoreCommonError
§impl Error for CoreCommonError
impl Error for CoreCommonError
1.30.0 · 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()
§impl PartialEq<CoreCommonError> for CoreCommonError
impl PartialEq<CoreCommonError> for CoreCommonError
§fn eq(&self, other: &CoreCommonError) -> bool
fn eq(&self, other: &CoreCommonError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.